1
0
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:
rubidium
2007-05-31 18:11:39 +00:00
parent 59c51f9fce
commit b2cd8f3631

View File

@@ -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 {