diff options
author | truelight <truelight@openttd.org> | 2006-08-22 20:41:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-08-22 20:41:26 +0000 |
commit | 5fd9aeb12b75a3971e86e5b7d1701115f57fbc12 (patch) | |
tree | c177232d70dec4fb6d7cd2dbac79206e86ee2daa /industry_cmd.c | |
parent | 2e0d16026b77d0ef2ed233f16beb25bbaf836941 (diff) | |
download | openttd-5fd9aeb12b75a3971e86e5b7d1701115f57fbc12.tar.xz |
(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
It isn't the best name, but we couldn't find any better.
This unifies the pool-system even more.
Diffstat (limited to 'industry_cmd.c')
-rw-r--r-- | industry_cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/industry_cmd.c b/industry_cmd.c index 454c2b9b1..b36f01ff5 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1878,8 +1878,8 @@ void IndustryMonthlyLoop(void) /* 3% chance that we start a new industry */ if (CHANCE16(3, 100)) { MaybeNewIndustry(Random()); - } else if (!_patches.smooth_economy && _total_industries > 0) { - i = GetIndustry(RandomRange(_total_industries)); + } else if (!_patches.smooth_economy && GetIndustryArraySize() > 0) { + i = GetIndustry(RandomRange(GetIndustryArraySize())); if (IsValidIndustry(i)) ChangeIndustryProduction(i); } |