From afe639efc0edc5fddec176ee023afd768c954bf0 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Thu, 1 Aug 2024 09:43:09 +0200 Subject: update to DBWagenreihung v0.16 --- lib/DBInfoscreen/Controller/Stationboard.pm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'lib/DBInfoscreen/Controller/Stationboard.pm') 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} ) -- cgit v1.2.3