summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-04-06 12:57:15 +0000
committerbelugas <belugas@openttd.org>2007-04-06 12:57:15 +0000
commite4fe1cb119ea629d39967d5005a668c6dbfb7259 (patch)
tree155f6007dd85aa61c6ed99d9cde4b30570e76aa0
parent7ad3bb257e0212e23dd74d3036aa8c5920af489d (diff)
downloadopenttd-e4fe1cb119ea629d39967d5005a668c6dbfb7259.tar.xz
(svn r9569) -Fix(r9567): testing mode leftover...
-rw-r--r--src/industry_cmd.cpp2
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();