mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r13409) -Fix: division by zero when one would press 'd' (skip order) when there's no order.
This commit is contained in:
parent
e2adaf59b2
commit
d49a86cf48
@ -566,6 +566,7 @@ private:
|
||||
{
|
||||
/* Don't skip when there's nothing to skip */
|
||||
if (_ctrl_pressed && w->vehicle->cur_order_index == w->OrderGetSel()) return;
|
||||
if (w->vehicle->num_orders == 0) return;
|
||||
|
||||
DoCommandP(w->vehicle->tile, w->vehicle->index, _ctrl_pressed ? w->OrderGetSel() : ((w->vehicle->cur_order_index + 1) % w->vehicle->num_orders),
|
||||
NULL, CMD_SKIP_TO_ORDER | CMD_MSG(_ctrl_pressed ? STR_CAN_T_SKIP_TO_ORDER : STR_CAN_T_SKIP_ORDER));
|
||||
|
Loading…
Reference in New Issue
Block a user