station_cmd.c
changeset 5573 afa6f92a71fd
parent 5568 75f13d7bfaed
child 5583 ed718fa4c69c
--- a/station_cmd.c	Wed Dec 27 12:22:25 2006 +0000
+++ b/station_cmd.c	Wed Dec 27 12:38:02 2006 +0000
@@ -4,6 +4,7 @@
 
 #include "stdafx.h"
 #include "openttd.h"
+#include "bridge_map.h"
 #include "debug.h"
 #include "functions.h"
 #include "station_map.h"
@@ -795,6 +796,10 @@
 	int flat_z;
 
 	BEGIN_TILE_LOOP(tile_cur, w, h, tile)
+		if (MayHaveBridgeAbove(tile_cur) && IsBridgeAbove(tile_cur)) {
+			return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
+		}
+
 		if (!EnsureNoVehicle(tile_cur)) return CMD_ERROR;
 
 		tileh = GetTileSlope(tile_cur, &z);