From f4482907dabf064299c7ef50a3ff47589ccb54ff Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 30 Aug 2007 17:17:04 +0000 Subject: (svn r11005) -Codechange: move the tiletype specific terraforming checks to the functions for those tile types. -Codechange: barren the rail grounds on terraforming. --- src/industry_cmd.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 6f9eeb8b0..57332103f 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1971,6 +1971,10 @@ Money IndustrySpec::GetConstructionCost() const )) >> 8; } +static CommandCost TerraformTile_Industry(TileIndex tile, uint32 flags, uint z_new, Slope tileh_new) +{ + return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR); // funny magic bulldozer +} extern const TileTypeProcs _tile_type_industry_procs = { DrawTile_Industry, /* draw_tile_proc */ @@ -1986,6 +1990,7 @@ extern const TileTypeProcs _tile_type_industry_procs = { GetProducedCargo_Industry, /* get_produced_cargo_proc */ NULL, /* vehicle_enter_tile_proc */ GetFoundation_Industry, /* get_foundation_proc */ + TerraformTile_Industry, /* terraform_tile_proc */ }; static const SaveLoad _industry_desc[] = { -- cgit v1.2.3-54-g00ecf