mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-02 04:13:26 +00:00
(svn r20600) -Fix [FS#4075]: "downscale" a full load order to a load if possible order when removing the order while the vehicle is loading. This to prevent the vehicle from (possibly) staying forever in the station
This commit is contained in:
parent
0fd73dee60
commit
8ce06a09b9
@ -773,6 +773,9 @@ CommandCost CmdDeleteOrder(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3
|
||||
* on his order list or not */
|
||||
if (sel_ord == u->cur_order_index && u->current_order.IsType(OT_LOADING)) {
|
||||
u->current_order.SetNonStopType(ONSF_STOP_EVERYWHERE);
|
||||
/* When full loading, "cancel" that order so the vehicle doesn't
|
||||
* stay indefinitely at this station anymore. */
|
||||
if (u->current_order.GetLoadType() & OLFB_FULL_LOAD) u->current_order.SetLoadType(OLF_LOAD_IF_POSSIBLE);
|
||||
}
|
||||
|
||||
/* Update any possible open window of the vehicle */
|
||||
|
Loading…
Reference in New Issue
Block a user