(svn r14456) -Fix: Obiwan in catchment-area and station-spread of docks.

This commit is contained in:
frosch
2008-10-10 20:09:29 +00:00
parent a34bd150fe
commit 70e1e83eb2
2 changed files with 22 additions and 3 deletions

View File

@@ -165,6 +165,11 @@ static inline bool IsDock(TileIndex t)
return GetStationType(t) == STATION_DOCK;
}
static inline bool IsDockTile(TileIndex t)
{
return IsTileType(t, MP_STATION) && GetStationType(t) == STATION_DOCK;
}
static inline bool IsBuoy(TileIndex t)
{
return GetStationType(t) == STATION_BUOY;