diff options
author | belugas <belugas@openttd.org> | 2007-04-06 12:57:15 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-04-06 12:57:15 +0000 |
commit | e4fe1cb119ea629d39967d5005a668c6dbfb7259 (patch) | |
tree | 155f6007dd85aa61c6ed99d9cde4b30570e76aa0 | |
parent | 7ad3bb257e0212e23dd74d3036aa8c5920af489d (diff) | |
download | openttd-e4fe1cb119ea629d39967d5005a668c6dbfb7259.tar.xz |
(svn r9569) -Fix(r9567): testing mode leftover...
-rw-r--r-- | src/industry_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 347b882c8..ebd231edb 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1854,7 +1854,7 @@ void IndustryMonthlyLoop() } /* 3% chance that we start a new industry */ - if (CHANCE16(99, 100)) { + if (CHANCE16(3, 100)) { MaybeNewIndustry(); } else if (!_patches.smooth_economy) { i = GetRandomIndustry(); |