From 0cdcb1d6c734ec8bcfe1c3983b49a569e2ae4b77 Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 18 Dec 2004 12:46:29 +0000 Subject: [PATCH] (svn r1151) Fix last commit |: --- station_cmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/station_cmd.c b/station_cmd.c index a452356423..c59cd30271 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -1583,9 +1583,11 @@ int32 CmdBuildAirport(int x, int y, uint32 flags, uint32 p1, uint32 p2) cost += _price.build_airport * w * h; if (flags & DC_EXEC) { + const AirportFTAClass *afc = GetAirport(p1); + st->owner = _current_player; - if (_current_player == _local_player && p1 <= AT_INTERNATIONAL) { - _last_built_aircraft_depot_tile = tile + GetAirport(p1)->airport_depots[0]; + if (_current_player == _local_player && afc->nof_depots != 0) { + _last_built_aircraft_depot_tile = tile + afc->airport_depots[0]; } st->airport_tile = tile;