From 43f807a9189a1dde0260f40f8553bcc8050a3e1d Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 13 Nov 2010 09:45:20 +0000 Subject: (svn r21156) -Codechange: Introduce EconomyIsInRecession(). --- src/town_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/town_cmd.cpp') diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index e08cbb158..3f2231326 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -497,7 +497,7 @@ static void TileLoop_Town(TileIndex tile) if (GB(r, 0, 8) < hs->population) { uint amt = GB(r, 0, 8) / 8 + 1; - if (_economy.fluct <= 0) amt = (amt + 1) >> 1; + if (EconomyIsInRecession()) amt = (amt + 1) >> 1; t->new_max_pass += amt; t->new_act_pass += MoveGoodsToStation(CT_PASSENGERS, amt, ST_TOWN, t->index, stations.GetStations()); } @@ -505,7 +505,7 @@ static void TileLoop_Town(TileIndex tile) if (GB(r, 8, 8) < hs->mail_generation) { uint amt = GB(r, 8, 8) / 8 + 1; - if (_economy.fluct <= 0) amt = (amt + 1) >> 1; + if (EconomyIsInRecession()) amt = (amt + 1) >> 1; t->new_max_mail += amt; t->new_act_mail += MoveGoodsToStation(CT_MAIL, amt, ST_TOWN, t->index, stations.GetStations()); } -- cgit v1.2.3-54-g00ecf