mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-12 09:09:09 +00:00
(svn r10003) -Fix (r9999): crash when vehicle had to turn on a bridge.
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user