summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--station_map.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/station_map.h b/station_map.h
index 759c79c2f..84693f9d9 100644
--- a/station_map.h
+++ b/station_map.h
@@ -43,7 +43,8 @@ enum {
typedef enum HangarTiles {
HANGAR_TILE_0 = 32,
- HANGAR_TILE_1 = 65
+ HANGAR_TILE_1 = 65,
+ HANGAR_TILE_2 = 86
} HangarTiles;
typedef enum StationType {
@@ -66,7 +67,10 @@ static inline bool IsRailwayStation(TileIndex t)
static inline bool IsHangar(TileIndex t)
{
- return _m[t].m5 == HANGAR_TILE_0 || _m[t].m5 == HANGAR_TILE_1;
+ return
+ _m[t].m5 == HANGAR_TILE_0 ||
+ _m[t].m5 == HANGAR_TILE_1 ||
+ _m[t].m5 == HANGAR_TILE_2;
}
static inline bool IsAirport(TileIndex t)