(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
1 changed files with 1 additions and 1 deletions

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 {