summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-30 17:17:04 +0000
committerrubidium <rubidium@openttd.org>2007-08-30 17:17:04 +0000
commitb284b5fa92adc5a5e8975e472511ab4e2e20f71e (patch)
tree8562d4448fae5c239425c0e3a045ac05afd33329 /src/station_cmd.cpp
parent9b65bc430cc4e59cba2e7ad09c2fcc0448e22781 (diff)
downloadopenttd-b284b5fa92adc5a5e8975e472511ab4e2e20f71e.tar.xz
(svn r11005) -Codechange: move the tiletype specific terraforming checks to the functions for those tile types.
-Codechange: barren the rail grounds on terraforming.
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index 44bf64bf1..6f4e3cbc8 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -2878,6 +2878,11 @@ void AfterLoadStations()
}
}
+static CommandCost TerraformTile_Station(TileIndex tile, uint32 flags, uint z_new, Slope tileh_new)
+{
+ return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
+}
+
extern const TileTypeProcs _tile_type_station_procs = {
DrawTile_Station, /* draw_tile_proc */
@@ -2893,6 +2898,7 @@ extern const TileTypeProcs _tile_type_station_procs = {
NULL, /* get_produced_cargo_proc */
VehicleEnter_Station, /* vehicle_enter_tile_proc */
GetFoundation_Station, /* get_foundation_proc */
+ TerraformTile_Station, /* terraform_tile_proc */
};
static const SaveLoad _roadstop_desc[] = {