Changeset - r2778:98a226df2f17
[Not reviewed]
master
0 1 0
Darkvater - 18 years ago 2005-12-21 01:14:01
darkvater@openttd.org
(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
order_gui.c
Show inline comments
 
@@ -218,7 +218,7 @@ static Order GetOrderCmdFromTile(const V
 
			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;
 
			}
0 comments (0 inline, 0 general)