mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r3018) -Fix: Fixed industry colour issue introduced in r3010.
This commit is contained in:
parent
abe60acbbb
commit
102cf2615f
@ -1487,8 +1487,8 @@ static void DoCreateNewIndustry(Industry *i, TileIndex tile, int type, const Ind
|
||||
i->owner = owner;
|
||||
|
||||
r = Random();
|
||||
i->color_map = GB(r, 8, 8);
|
||||
i->counter = GB(r, 0, 16);
|
||||
i->color_map = GB(r, 8, 4);
|
||||
i->counter = GB(r, 0, 12);
|
||||
i->cargo_waiting[0] = 0;
|
||||
i->cargo_waiting[1] = 0;
|
||||
i->last_mo_production[0] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user