diff options
Diffstat (limited to 'src/depot.h')
-rw-r--r-- | src/depot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/depot.h b/src/depot.h index 300423ad7..17e951358 100644 --- a/src/depot.h +++ b/src/depot.h @@ -74,7 +74,7 @@ static inline bool IsTileDepotType(TileIndex tile, TransportType type) return IsTileType(tile, MP_RAILWAY) && GetRailTileType(tile) == RAIL_TILE_DEPOT; case TRANSPORT_ROAD: - return IsTileType(tile, MP_STREET) && GetRoadTileType(tile) == ROAD_TILE_DEPOT; + return IsTileType(tile, MP_ROAD) && GetRoadTileType(tile) == ROAD_TILE_DEPOT; case TRANSPORT_WATER: return IsTileType(tile, MP_WATER) && GetWaterTileType(tile) == WATER_TILE_DEPOT; |