mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r1151) Fix last commit |:
This commit is contained in:
parent
11d477044c
commit
0cdcb1d6c7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user