From 9fa6fb7438e9011650b2886f337483aef93ec733 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 3 Jun 2023 19:27:22 +0100 Subject: [PATCH] Pay company loan interest before accumulating quarterly statistics See: #524 --- src/economy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/economy.cpp b/src/economy.cpp index ffb2331f89..cc471681ce 100644 --- a/src/economy.cpp +++ b/src/economy.cpp @@ -2395,12 +2395,12 @@ void LoadUnloadStation(Station *st) */ void CompaniesMonthlyLoop() { + CompaniesPayInterest(); CompaniesGenStatistics(); if (_settings_game.economy.inflation) { AddInflation(); RecomputePrices(); } - CompaniesPayInterest(); HandleEconomyFluctuations(); }