mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r10003) -Fix (r9999): crash when vehicle had to turn on a bridge.
This commit is contained in:
parent
59c51f9fce
commit
b2cd8f3631
@ -1417,7 +1417,7 @@ again:
|
||||
v->cur_speed = 0;
|
||||
return;
|
||||
}
|
||||
} else if (GetRoadTileType(v->tile) == ROAD_TILE_NORMAL && GetDisallowedRoadDirections(v->tile) != DRD_NONE) {
|
||||
} else if (IsTileType(tile, MP_STREET) && GetRoadTileType(v->tile) == ROAD_TILE_NORMAL && GetDisallowedRoadDirections(v->tile) != DRD_NONE) {
|
||||
v->cur_speed = 0;
|
||||
return;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user