Changeset - r972:f974fdeecfad
[Not reviewed]
master
0 1 0
Celestar - 19 years ago 2005-01-10 16:35:20
celestar@openttd.org
(svn r1467) Fixed a nasty bug where one could build one station OVER the other
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
station_cmd.c
Show inline comments
 
@@ -645,8 +645,8 @@ int32 CheckFlatLandBelow(uint tile, uint
 
		// if station is set, then we have special handling to allow building on top of already existing stations.
 
		// so station points to -1 if we can build on any station. or it points to a station if we're only allowed to build
 
		// on exactly that station.
 
		if (station && IS_TILETYPE(tile_cur, MP_STATION)) {
 
			if (_map5[tile] >= 8) {
 
		if ( (station != NULL) && IS_TILETYPE(tile_cur, MP_STATION)) {
 
			if (_map5[tile_cur] >= 8) {
 
				_error_message = STR_0007_FLAT_LAND_REQUIRED;
 
				return CMD_ERROR;
 
			} else {
0 comments (0 inline, 0 general)