1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-14 10:09:11 +00:00

Fix: Second colour vehicle-type default liveries not being updated

When changing company default second colour
This commit is contained in:
Jonathan G Rennison
2024-02-03 23:13:52 +00:00
committed by rubidium42
parent d5e936c9d4
commit cb13ee90ef

@@ -1046,7 +1046,7 @@ CommandCost CmdSetCompanyColour(DoCommandFlag flags, LiveryScheme scheme, bool p
c->livery[scheme].colour2 = colour;
if (scheme == LS_DEFAULT) {
UpdateCompanyGroupLiveries(c);
UpdateCompanyLiveries(c);
}
}