1
0
Fork 0

(svn r961) Fixed a problem with the new order system due to missing '{}'

release/0.4.5
Celestar 2004-12-05 23:57:08 +00:00
parent c8d83ce557
commit 293d5bffa8
1 changed files with 2 additions and 1 deletions

View File

@ -190,11 +190,12 @@ static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
case MP_STATION:
if (v->type != VEH_Aircraft) break;
if ( IsAircraftHangarTile(tile) && _map_owner[tile] == _local_player)
if ( IsAircraftHangarTile(tile) && _map_owner[tile] == _local_player) {
order.type = OT_GOTO_DEPOT;
order.flags = OF_UNLOAD | OF_NON_STOP;
order.station = _map2[tile];
return order;
}
break;
case MP_WATER: