(svn r22204) -Change: Make the base costs for building and demolishing NewObjects also local to the individual NewGRFs

This commit is contained in:
planetmaker
2011-03-05 18:28:10 +00:00
parent f5a7ad70dc
commit 2aa14cc54b
2 changed files with 4 additions and 4 deletions

View File

@@ -74,13 +74,13 @@ struct ObjectSpec {
* Get the cost for building a structure of this type.
* @return The cost for building.
*/
Money GetBuildCost() const { return (_price[PR_BUILD_OBJECT] * this->build_cost_multiplier); }
Money GetBuildCost() const { return GetPrice(PR_BUILD_OBJECT, this->build_cost_multiplier, this->grf_prop.grffile, 0); }
/**
* Get the cost for clearing a structure of this type.
* @return The cost for clearing.
*/
Money GetClearCost() const { return (_price[PR_CLEAR_OBJECT] * this->clear_cost_multiplier); }
Money GetClearCost() const { return GetPrice(PR_CLEAR_OBJECT, this->clear_cost_multiplier, this->grf_prop.grffile, 0); }
bool IsAvailable() const;
uint Index() const;