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

🆑 LT3
fix: Tramstation floor tiles will correctly get custom station colors
when they exist
/🆑
This commit is contained in:
lessthanthree
2023-11-06 22:22:40 +00:00
committed by GitHub
parent 45f81466d9
commit d83961ac33
+1 -1
View File
@@ -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