mirror of https://github.com/OpenTTD/OpenTTD
(svn r12639) -Fix: order window was not marked dirty on changed orders.
parent
55f0d01235
commit
d178345947
|
@ -810,24 +810,22 @@ CommandCost CmdModifyOrder(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
||||||
/* Update the windows and full load flags, also for vehicles that share the same order list */
|
/* Update the windows and full load flags, also for vehicles that share the same order list */
|
||||||
Vehicle *u = GetFirstVehicleFromSharedList(v);
|
Vehicle *u = GetFirstVehicleFromSharedList(v);
|
||||||
DeleteOrderWarnings(u);
|
DeleteOrderWarnings(u);
|
||||||
if (mof == MOF_LOAD || mof == MOF_UNLOAD) {
|
for (; u != NULL; u = u->next_shared) {
|
||||||
for (; u != NULL; u = u->next_shared) {
|
/* Toggle u->current_order "Full load" flag if it changed.
|
||||||
/* Toggle u->current_order "Full load" flag if it changed.
|
* However, as the same flag is used for depot orders, check
|
||||||
* However, as the same flag is used for depot orders, check
|
* whether we are not going to a depot as there are three
|
||||||
* whether we are not going to a depot as there are three
|
* cases where the full load flag can be active and only
|
||||||
* cases where the full load flag can be active and only
|
* one case where the flag is used for depot orders. In the
|
||||||
* one case where the flag is used for depot orders. In the
|
* other cases for the OrderTypeByte the flags are not used,
|
||||||
* other cases for the OrderTypeByte the flags are not used,
|
* so do not care and those orders should not be active
|
||||||
* so do not care and those orders should not be active
|
* when this function is called.
|
||||||
* when this function is called.
|
*/
|
||||||
*/
|
if (sel_ord == u->cur_order_index &&
|
||||||
if (sel_ord == u->cur_order_index &&
|
(u->current_order.IsType(OT_GOTO_STATION) || u->current_order.IsType(OT_LOADING)) &&
|
||||||
(u->current_order.IsType(OT_GOTO_STATION) || u->current_order.IsType(OT_LOADING)) &&
|
u->current_order.GetLoadType() != order->GetLoadType()) {
|
||||||
u->current_order.GetLoadType() != order->GetLoadType()) {
|
u->current_order.SetLoadType(order->GetLoadType());
|
||||||
u->current_order.SetLoadType(order->GetLoadType());
|
|
||||||
}
|
|
||||||
InvalidateVehicleOrder(u);
|
|
||||||
}
|
}
|
||||||
|
InvalidateVehicleOrder(u);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue