diff options
author | truelight <truelight@openttd.org> | 2006-01-29 20:06:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-01-29 20:06:26 +0000 |
commit | a33a7bc4f80290e55d75ce8efc9d0350cb329ae8 (patch) | |
tree | f76f4384ef90e742afb12c70e4a701edcba0ecc0 | |
parent | 8650268e3dbeb1404304d910edcadf90ad313f11 (diff) | |
download | openttd-a33a7bc4f80290e55d75ce8efc9d0350cb329ae8.tar.xz |
(svn r3477) -Fix: a fix that fixed the last commit.. I shouldn't be committing here :)
-rw-r--r-- | order_gui.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/order_gui.c b/order_gui.c index 258f8b590..50c45b16b 100644 --- a/order_gui.c +++ b/order_gui.c @@ -191,8 +191,6 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile) Order order; int st_index; - order.station = INVALID_STATION; - // check depot first if (_patches.gotodepot) { switch (GetTileType(tile)) { @@ -278,6 +276,7 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile) // not found order.type = OT_NOTHING; order.flags = 0; + order.station = INVALID_STATION; return order; } |