mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 10:30:28 +00:00
(svn r23859) -Fix: Inserting conditional orders for ships checked the wrong orders wrt. maximum distance.
This commit is contained in:
parent
0b4d40b30e
commit
a60f19ae14
@ -812,7 +812,14 @@ CommandCost CmdInsertOrder(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3
|
|||||||
if (++n == sel_ord && prev != NULL) break;
|
if (++n == sel_ord && prev != NULL) break;
|
||||||
}
|
}
|
||||||
if (prev != NULL) {
|
if (prev != NULL) {
|
||||||
uint dist = GetOrderDistance(prev, &new_order, v);
|
uint dist;
|
||||||
|
if (new_order.IsType(OT_CONDITIONAL)) {
|
||||||
|
/* The order is not yet inserted, so we have to do the first iteration here. */
|
||||||
|
dist = GetOrderDistance(prev, v->GetOrder(new_order.GetConditionSkipToOrder()), v);
|
||||||
|
} else {
|
||||||
|
dist = GetOrderDistance(prev, &new_order, v);
|
||||||
|
}
|
||||||
|
|
||||||
if (dist >= 130) {
|
if (dist >= 130) {
|
||||||
return_cmd_error(STR_ERROR_TOO_FAR_FROM_PREVIOUS_DESTINATION);
|
return_cmd_error(STR_ERROR_TOO_FAR_FROM_PREVIOUS_DESTINATION);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user