(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.

This commit is contained in:
Darkvater 2005-12-21 01:14:01 +00:00
parent 7142512754
commit a24de0ba3b
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile)
if (v->type != VEH_Aircraft) break;
if (IsAircraftHangarTile(tile) && IsTileOwner(tile, _local_player)) {
order.type = OT_GOTO_DEPOT;
order.flags = OF_PART_OF_ORDERS | OF_NON_STOP; //XXX - whats the nonstop stuff doing here?
order.flags = OF_PART_OF_ORDERS;
order.station = _m[tile].m2;
return order;
}