diff options
author | frosch <frosch@openttd.org> | 2008-10-10 20:09:29 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-10-10 20:09:29 +0000 |
commit | 921bdf783f29558c0ba229dd437b9cb4d26dca61 (patch) | |
tree | e5d47c944dcf6707557d2c96043d1d5f5705974b /src/station_map.h | |
parent | 75e3d49df36fcaeabe7bbcaf965aea2393655e72 (diff) | |
download | openttd-921bdf783f29558c0ba229dd437b9cb4d26dca61.tar.xz |
(svn r14456) -Fix: Obiwan in catchment-area and station-spread of docks.
Diffstat (limited to 'src/station_map.h')
-rw-r--r-- | src/station_map.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/station_map.h b/src/station_map.h index 77d427958..0f3ff0721 100644 --- a/src/station_map.h +++ b/src/station_map.h @@ -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; |