mirror of https://github.com/OpenTTD/OpenTTD
(svn r1472) -Fix: correct error message for when trying to build a railroad station over a bus/truck/etc-station.
parent
02e020c05e
commit
70f9921423
|
@ -598,6 +598,8 @@ static void DeleteStationIfEmpty(Station *st) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int32 ClearTile_Station(uint tile, byte flags);
|
||||||
|
|
||||||
// Tries to clear the given area. Returns the cost in case of success.
|
// Tries to clear the given area. Returns the cost in case of success.
|
||||||
// Or an error code if it failed.
|
// Or an error code if it failed.
|
||||||
int32 CheckFlatLandBelow(uint tile, uint w, uint h, uint flags, uint invalid_dirs, int *station)
|
int32 CheckFlatLandBelow(uint tile, uint w, uint h, uint flags, uint invalid_dirs, int *station)
|
||||||
|
@ -647,7 +649,7 @@ int32 CheckFlatLandBelow(uint tile, uint w, uint h, uint flags, uint invalid_dir
|
||||||
// on exactly that station.
|
// on exactly that station.
|
||||||
if ( (station != NULL) && IS_TILETYPE(tile_cur, MP_STATION)) {
|
if ( (station != NULL) && IS_TILETYPE(tile_cur, MP_STATION)) {
|
||||||
if (_map5[tile_cur] >= 8) {
|
if (_map5[tile_cur] >= 8) {
|
||||||
_error_message = STR_0007_FLAT_LAND_REQUIRED;
|
_error_message = ClearTile_Station(tile_cur, DC_AUTO); // get error message
|
||||||
return CMD_ERROR;
|
return CMD_ERROR;
|
||||||
} else {
|
} else {
|
||||||
int st = _map2[tile_cur];
|
int st = _map2[tile_cur];
|
||||||
|
|
Loading…
Reference in New Issue