Changeset - r559:cde53d28ff02
[Not reviewed]
master
0 1 0
Celestar - 19 years ago 2004-12-05 23:57:08
celestar@openttd.org
(svn r961) Fixed a problem with the new order system due to missing '{}'
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
order_gui.c
Show inline comments
 
@@ -190,11 +190,12 @@ static Order GetOrderCmdFromTile(Vehicle
 

	
 
		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:
0 comments (0 inline, 0 general)