src/station_cmd.cpp
changeset 10919 5005624f2505
parent 10905 293ba816b703
child 11009 8dcebd74faca
--- a/src/station_cmd.cpp	Wed Jun 11 14:55:02 2008 +0000
+++ b/src/station_cmd.cpp	Wed Jun 11 15:08:52 2008 +0000
@@ -1496,7 +1496,7 @@
 CommandCost CmdRemoveRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
 {
 	/* Make sure the specified tile is a road stop of the correct type */
-	if (!IsTileType(tile, MP_STATION) || !IsRoadStop(tile) || (uint32)GetRoadStopType(tile) != p2) return CMD_ERROR;
+	if (!IsTileType(tile, MP_STATION) || !IsRoadStop(tile) || (uint32)GetRoadStopType(tile) != GB(p2, 0, 1)) return CMD_ERROR;
 	Station *st = GetStationByTile(tile);
 	/* Save the stop info before it is removed */
 	bool is_drive_through = IsDriveThroughStopTile(tile);