diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-01 09:43:09 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-01 09:43:09 +0200 |
commit | afe639efc0edc5fddec176ee023afd768c954bf0 (patch) | |
tree | 3b6296dd6219bf119b4865cec056fb9994e23952 /lib/DBInfoscreen/Controller/Stationboard.pm | |
parent | c74b91b09f8888b5d4a35b7b2cb49d313db342d9 (diff) |
update to DBWagenreihung v0.164.29.2
Diffstat (limited to 'lib/DBInfoscreen/Controller/Stationboard.pm')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index 66bf402..93c9546 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -818,19 +818,20 @@ sub render_train { $entry = $wagon->number; } else { - $entry = $wagon->type; - - #if ($wagon->has_first_class) { - # if ($wagon->has_second_class) { - # $entry = '½'; - # } - # else { - # $entry = '1.'; - # } - #} - #else { - # $entry = '2.'; - #} + if ( $wagon->has_first_class ) { + if ( $wagon->has_second_class ) { + $entry = '½'; + } + else { + $entry = '1.'; + } + } + elsif ( $wagon->has_second_class ) { + $entry = '2.'; + } + else { + $entry = $wagon->type; + } } if ( $group->train_no ne $departure->{train_no} ) |