summaryrefslogtreecommitdiff
path: root/src
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
commit1c97841ff6b91fcc923664e7790b504f109881ef (patch)
tree155f6007dd85aa61c6ed99d9cde4b30570e76aa0 /src
parentd4d5ce7ee56c91a5dd84cbb0b5d1df54e1c20b9f (diff)
downloadopenttd-1c97841ff6b91fcc923664e7790b504f109881ef.tar.xz
(svn r9569) -Fix(r9567): testing mode leftover...
Diffstat (limited to 'src')
-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();