From 0e5f334315f8d461a62cc45b76193eddca6ce2a2 Mon Sep 17 00:00:00 2001 From: terkhen Date: Sat, 3 Dec 2011 22:22:25 +0000 Subject: [PATCH] (svn r23406) -Change: Run the monthly subsidy loop after cargo acceptance has been calculated. --- src/date.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/date.cpp b/src/date.cpp index 52827d1170..d28dd36ca8 100644 --- a/src/date.cpp +++ b/src/date.cpp @@ -233,10 +233,10 @@ static void OnNewMonth() SetWindowClassesDirty(WC_CHEATS); CompaniesMonthlyLoop(); - SubsidyMonthlyLoop(); EnginesMonthlyLoop(); TownsMonthlyLoop(); IndustryMonthlyLoop(); + SubsidyMonthlyLoop(); StationMonthlyLoop(); #ifdef ENABLE_NETWORK if (_network_server) NetworkServerMonthlyLoop();