From d83961ac33ee89bfbc0cfb35da6e17c03c8ae903 Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:22:40 +0000 Subject: [PATCH] Fix some tramstation decals not using station colors (#79283) ## About The Pull Request Fixes a tile decal that's missing the station colors proc ## Changelog :cl: LT3 fix: Tramstation floor tiles will correctly get custom station colors when they exist /:cl: --- code/game/turfs/open/floor/misc_floor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/open/floor/misc_floor.dm b/code/game/turfs/open/floor/misc_floor.dm index 4fe0cb044ad..f8464a8ce4e 100644 --- a/code/game/turfs/open/floor/misc_floor.dm +++ b/code/game/turfs/open/floor/misc_floor.dm @@ -157,7 +157,7 @@ /turf/open/floor/noslip/tram/Initialize(mapload) . = ..() - var/current_holiday_color = request_holiday_colors(src, PATTERN_VERTICAL_STRIPE) + var/current_holiday_color = request_station_colors(src, PATTERN_VERTICAL_STRIPE) || request_holiday_colors(src, PATTERN_VERTICAL_STRIPE) if(current_holiday_color) color = current_holiday_color else