diff --git a/station_cmd.c b/station_cmd.c --- a/station_cmd.c +++ b/station_cmd.c @@ -1782,9 +1782,8 @@ int32 CmdBuildAirport(int x, int y, uint const AirportFTAClass *afc = GetAirport(p1); st->owner = _current_player; - if (_current_player == _local_player && afc->nof_depots != 0) { - _last_built_aircraft_depot_tile = tile + ToTileIndexDiff(afc->airport_depots[0]); - } + if (IsLocalPlayer() && afc->nof_depots != 0) + _last_built_aircraft_depot_tile = tile + ToTileIndexDiff(afc->airport_depots[0]); st->airport_tile = tile; if (!st->facilities) st->xy = tile;