mirror of https://github.com/OpenTTD/OpenTTD
(svn r2211) - Fix(ish): When eternally looping in 2090 don't go increasing the inflation anymore because it will just rise to insanely high values beyond all imagination.
parent
878cebaa70
commit
972448d5ae
|
@ -1480,7 +1480,7 @@ int LoadUnloadVehicle(Vehicle *v)
|
||||||
void PlayersMonthlyLoop(void)
|
void PlayersMonthlyLoop(void)
|
||||||
{
|
{
|
||||||
PlayersGenStatistics();
|
PlayersGenStatistics();
|
||||||
if (_patches.inflation)
|
if (_patches.inflation && _cur_year < MAX_YEAR_END)
|
||||||
AddInflation();
|
AddInflation();
|
||||||
PlayersPayInterest();
|
PlayersPayInterest();
|
||||||
// Reset the _current_player flag
|
// Reset the _current_player flag
|
||||||
|
|
Loading…
Reference in New Issue