From 546dfc2758ab3e9896cca1646980f81582b6e556 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 20 May 2007 10:27:43 +0000 Subject: (svn r9889) -Codechange: Use cargo's freight status for choosing livery scheme. --- src/vehicle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vehicle.cpp b/src/vehicle.cpp index 8ff8d1de8..f8c0ba4c5 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -2479,7 +2479,7 @@ const Livery *GetEngineLivery(EngineID engine_type, PlayerID player, EngineID pa { if (cargo_type == CT_INVALID) cargo_type = rvi->cargo_type; if (rvi->railveh_type == RAILVEH_WAGON) { - if (cargo_type == CT_PASSENGERS || cargo_type == CT_MAIL || cargo_type == CT_VALUABLES) { + if (!GetCargo(cargo_type)->is_freight) { if (parent_engine_type == INVALID_ENGINE) { scheme = LS_PASSENGER_WAGON_STEAM; } else { -- cgit v1.2.3-54-g00ecf