summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/station_cmd.c b/station_cmd.c
index b54f81b39..74a3308c2 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -1778,6 +1778,11 @@ static uint GetSlopeZ_Station(TileInfo *ti)
return z;
}
+static uint GetSlopeTileh_Station(TileInfo *ti)
+{
+ return 0;
+}
+
static void GetAcceptedCargo_Station(uint tile, AcceptedCargo *ac)
{
/* not used */
@@ -2451,6 +2456,7 @@ const TileTypeProcs _tile_type_station_procs = {
NULL, /* get_produced_cargo_proc */
VehicleEnter_Station, /* vehicle_enter_tile_proc */
NULL, /* vehicle_leave_tile_proc */
+ GetSlopeTileh_Station, /* get_slope_tileh_proc */
};