From 80a9fa962d084da762f1c5a055b0b7db6fc40a1f Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 18 Dec 2004 12:46:29 +0000 Subject: (svn r1151) Fix last commit |: --- station_cmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'station_cmd.c') diff --git a/station_cmd.c b/station_cmd.c index a45235642..c59cd3027 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; -- cgit v1.2.3-54-g00ecf