diff options
author | terkhen <terkhen@openttd.org> | 2012-02-02 19:31:11 +0000 |
---|---|---|
committer | terkhen <terkhen@openttd.org> | 2012-02-02 19:31:11 +0000 |
commit | cf6abeac69539cc52a06f62c48e899305bd62ede (patch) | |
tree | 64ddc14ceed534f362e3c393bb8a35d349784335 | |
parent | 2ec5e89d06a4d50ce52bd361dc563b88c37dfa6b (diff) | |
download | openttd-cf6abeac69539cc52a06f62c48e899305bd62ede.tar.xz |
(svn r23876) -Fix (r23408) [FS#5039]: Generate industry subsidies again. (Emmeran)
-rw-r--r-- | src/subsidy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subsidy.cpp b/src/subsidy.cpp index 3e9657bd6..465a59560 100644 --- a/src/subsidy.cpp +++ b/src/subsidy.cpp @@ -504,7 +504,7 @@ void SubsidyMonthlyLoop() int n = 1000; do { - industry_subsidy = FindSubsidyTownCargoRoute(); + industry_subsidy = FindSubsidyIndustryCargoRoute(); } while (!industry_subsidy && n--); } |