mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 02:19:41 +00:00
(svn r24158) -Fix (r23408): Town producing no cargo at all could spawn passenger subsidies.
This commit is contained in:
parent
7dd0254b8e
commit
c8ec47130d
@ -336,6 +336,9 @@ bool FindSubsidyTownCargoRoute()
|
||||
/* Passenger subsidies are not handled here. */
|
||||
ClrBit(town_cargo_produced, CT_PASSENGERS);
|
||||
|
||||
/* No cargo produced at all? */
|
||||
if (town_cargo_produced == 0) return false;
|
||||
|
||||
/* Choose a random cargo that is produced in the town. */
|
||||
uint8 cargo_number = RandomRange(CountBits(town_cargo_produced));
|
||||
CargoID cid;
|
||||
|
Loading…
Reference in New Issue
Block a user