From db02336ef17823e666c8355f40c460342056bf7e Mon Sep 17 00:00:00 2001 From: KUDr Date: Wed, 3 Jan 2007 22:55:53 +0000 Subject: [PATCH] (svn r7810) -Fix: FS#504 Building airport whose size exceeds max station spread-out caused assert. (Zuu) --- src/station_cmd.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/station_cmd.c b/src/station_cmd.c index 73d6d1bacb..21784c473f 100644 --- a/src/station_cmd.c +++ b/src/station_cmd.c @@ -1705,6 +1705,11 @@ int32 CmdBuildAirport(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (st != NULL && st->facilities) st = NULL; } + if (w > _patches.station_spread || h > _patches.station_spread) { + _error_message = STR_306C_STATION_TOO_SPREAD_OUT; + return CMD_ERROR; + } + if (st != NULL) { if (st->owner != OWNER_NONE && st->owner != _current_player) return_cmd_error(STR_3009_TOO_CLOSE_TO_ANOTHER_STATION);