# HG changeset patch # User truelight # Date 1138565186 0 # Node ID 171c2b26c070f37b1847ef7fc779593b527f8de9 # Parent ac80dd4d6c81fc03a638c974b8bbb48f7fae8bea (svn r3477) -Fix: a fix that fixed the last commit.. I shouldn't be committing here :) diff --git a/order_gui.c b/order_gui.c --- a/order_gui.c +++ b/order_gui.c @@ -191,8 +191,6 @@ Order order; int st_index; - order.station = INVALID_STATION; - // check depot first if (_patches.gotodepot) { switch (GetTileType(tile)) { @@ -278,6 +276,7 @@ // not found order.type = OT_NOTHING; order.flags = 0; + order.station = INVALID_STATION; return order; }