summaryrefslogtreecommitdiff
path: root/station_map.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-05-21 12:01:57 +0000
committertron <tron@openttd.org>2006-05-21 12:01:57 +0000
commit9bd8bccaa07d31dc8fb55bdec3bfb2215e01165f (patch)
tree9c205283cb6d8c8cc73f95e6dff768719a0f557a /station_map.c
parent2b17d16ce21ebc8298f2e85656d73aa896bfabb3 (diff)
downloadopenttd-9bd8bccaa07d31dc8fb55bdec3bfb2215e01165f.tar.xz
(svn r4938) Remove STATION_HANGAR, because it isn't really a station type of its own
Diffstat (limited to 'station_map.c')
-rw-r--r--station_map.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/station_map.c b/station_map.c
index 5dea88906..6341cd6ba 100644
--- a/station_map.c
+++ b/station_map.c
@@ -9,7 +9,6 @@ StationType GetStationType(TileIndex t)
{
assert(IsTileType(t, MP_STATION));
if (IsRailwayStation(t)) return STATION_RAIL;
- if (IsHangar(t)) return STATION_HANGAR;
if (IsAirport(t)) return STATION_AIRPORT;
if (IsTruckStop(t)) return STATION_TRUCK;
if (IsBusStop(t)) return STATION_BUS;