mirror of https://github.com/OpenTTD/OpenTTD
(svn r15125) -Fix [FS#2544]: Do not try to determine the next order destination, if there are no orders.
parent
4bc7afae41
commit
2850bf9e00
|
@ -2839,6 +2839,8 @@ public:
|
||||||
*/
|
*/
|
||||||
bool SwitchToNextOrder(bool skip_first)
|
bool SwitchToNextOrder(bool skip_first)
|
||||||
{
|
{
|
||||||
|
if (this->v->GetNumOrders() == 0) return false;
|
||||||
|
|
||||||
if (skip_first) ++this->index;
|
if (skip_first) ++this->index;
|
||||||
|
|
||||||
int conditional_depth = 0;
|
int conditional_depth = 0;
|
||||||
|
|
Loading…
Reference in New Issue