mirror of https://github.com/OpenTTD/OpenTTD
(svn r22297) -Fix [FS#4580]: the 'freeform edges' setting could be enabled when there were buoys on the northern border (adf88)
parent
d52dbc714a
commit
a8862eb77f
|
@ -1071,13 +1071,15 @@ static bool CheckFreeformEdges(int32 p1)
|
||||||
if (p1 != 0) {
|
if (p1 != 0) {
|
||||||
Ship *s;
|
Ship *s;
|
||||||
FOR_ALL_SHIPS(s) {
|
FOR_ALL_SHIPS(s) {
|
||||||
|
/* Check if there is a ship on the northern border. */
|
||||||
if (TileX(s->tile) == 0 || TileY(s->tile) == 0) {
|
if (TileX(s->tile) == 0 || TileY(s->tile) == 0) {
|
||||||
ShowErrorMessage(STR_CONFIG_SETTING_EDGES_NOT_EMPTY, INVALID_STRING_ID, WL_ERROR);
|
ShowErrorMessage(STR_CONFIG_SETTING_EDGES_NOT_EMPTY, INVALID_STRING_ID, WL_ERROR);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Station *st;
|
BaseStation *st;
|
||||||
FOR_ALL_STATIONS(st) {
|
FOR_ALL_BASE_STATIONS(st) {
|
||||||
|
/* Check if there is a buoy on the northern border. */
|
||||||
if (TileX(st->xy) == 0 || TileY(st->xy) == 0) {
|
if (TileX(st->xy) == 0 || TileY(st->xy) == 0) {
|
||||||
ShowErrorMessage(STR_CONFIG_SETTING_EDGES_NOT_EMPTY, INVALID_STRING_ID, WL_ERROR);
|
ShowErrorMessage(STR_CONFIG_SETTING_EDGES_NOT_EMPTY, INVALID_STRING_ID, WL_ERROR);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue