(svn r13383) -Codechange: Put the cost of house removal in a class member

This commit is contained in:
belugas
2008-06-05 01:43:03 +00:00
parent dc22170c99
commit 4f3eb7f3cd
2 changed files with 14 additions and 1 deletions

View File

@@ -127,6 +127,11 @@ void Town::InitializeLayout()
}
}
Money HouseSpec::GetRemovalCost() const
{
return (_price.remove_house * this->removal_cost) >> 8;
}
// Local
static int _grow_town_result;
@@ -517,7 +522,7 @@ static CommandCost ClearTile_Town(TileIndex tile, byte flags)
const HouseSpec *hs = GetHouseSpecs(GetHouseType(tile));
CommandCost cost(EXPENSES_CONSTRUCTION);
cost.AddCost(_price.remove_house * hs->removal_cost >> 8);
cost.AddCost(hs->GetRemovalCost());
int rating = hs->remove_rating_decrease;
_cleared_town_rating += rating;