summaryrefslogtreecommitdiff
path: root/ship_cmd.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2006-12-05 23:57:04 +0000
committerbjarni <bjarni@openttd.org>2006-12-05 23:57:04 +0000
commit256fa07de6b527304b5c22e9efe02dc4582bd42f (patch)
treeab6b8f0d3aa0387b1e9bcb8b43661cef34413984 /ship_cmd.c
parentb461b8dbe5f95d7ee6329637e0ae1e0d05a96b56 (diff)
downloadopenttd-256fa07de6b527304b5c22e9efe02dc4582bd42f.tar.xz
(svn r7389) -Fix: when forcing a vehicle to go to a depot, clear refit orders from current orders (caused refit error popup when not having no orders)
Diffstat (limited to 'ship_cmd.c')
-rw-r--r--ship_cmd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ship_cmd.c b/ship_cmd.c
index c7e6f9c3a..0f361b54d 100644
--- a/ship_cmd.c
+++ b/ship_cmd.c
@@ -1030,6 +1030,7 @@ int32 CmdSendShipToDepot(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
v->current_order.type = OT_GOTO_DEPOT;
v->current_order.flags = OF_NON_STOP;
if (!(p2 & DEPOT_SERVICE)) SETBIT(v->current_order.flags, OFB_HALT_IN_DEPOT);
+ v->current_order.refit_cargo = CT_INVALID;
v->current_order.dest = dep->index;
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);
}