(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.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user