mirror of https://github.com/OpenTTD/OpenTTD
Change: Don't leave ship depot with no orders.
parent
29b6b74ee1
commit
6a38a3f5df
|
@ -330,6 +330,9 @@ static bool CheckShipLeaveDepot(Ship *v)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Don't leave depot if no destination set */
|
||||||
|
if (v->dest_tile == 0) return true;
|
||||||
|
|
||||||
TileIndex tile = v->tile;
|
TileIndex tile = v->tile;
|
||||||
Axis axis = GetShipDepotAxis(tile);
|
Axis axis = GetShipDepotAxis(tile);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue