summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
authorCelestar <celestar@openttd.org>2004-12-06 00:03:26 +0000
committerCelestar <celestar@openttd.org>2004-12-06 00:03:26 +0000
commita3a2f0617c0eebe63980b2057214fb4e9f76c41d (patch)
treef27f82472e6e6d6216b0be27d5f023f2618632dd /order_gui.c
parent293d5bffa8fce0309d769a63d77ce43d1c447535 (diff)
downloadopenttd-a3a2f0617c0eebe63980b2057214fb4e9f76c41d.tar.xz
(svn r962) Fixed a problem with the new order system due to missing '{}' (another place)
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/order_gui.c b/order_gui.c
index 54d404997..23a5074e9 100644
--- a/order_gui.c
+++ b/order_gui.c
@@ -172,20 +172,22 @@ static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
switch(GET_TILETYPE(tile)) {
case MP_RAILWAY:
if (v->type == VEH_Train && _map_owner[tile] == _local_player) {
- if ((_map5[tile]&0xFC)==0xC0)
+ if ((_map5[tile]&0xFC)==0xC0) {
order.type = OT_GOTO_DEPOT;
order.flags = OF_UNLOAD;
order.station = GetDepotByTile(tile);
return order;
+ }
}
break;
case MP_STREET:
- if ((_map5[tile] & 0xF0) == 0x20 && v->type == VEH_Road && _map_owner[tile] == _local_player)
+ if ((_map5[tile] & 0xF0) == 0x20 && v->type == VEH_Road && _map_owner[tile] == _local_player) {
order.type = OT_GOTO_DEPOT;
order.flags = OF_UNLOAD;
order.station = GetDepotByTile(tile);
return order;
+ }
break;
case MP_STATION:
@@ -195,7 +197,7 @@ static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
order.flags = OF_UNLOAD | OF_NON_STOP;
order.station = _map2[tile];
return order;
- }
+ }
break;
case MP_WATER: