summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-01-26 23:03:47 +0000
committeryexo <yexo@openttd.org>2010-01-26 23:03:47 +0000
commit7f998ce80d48e6f34be5d81b00c5384264e90ab3 (patch)
treef4f6d2f33b0df7b61916a7e7955a6d7c150e9d81 /src/station_cmd.cpp
parent0bc1b736d7b0c9ed1796731834cf7ad14cdcdaa0 (diff)
downloadopenttd-7f998ce80d48e6f34be5d81b00c5384264e90ab3.tar.xz
(svn r18921) -Codechange: make the preconditions for Get/Set CustomStationSpecIndex a bit more strict
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index 2605595b7..dadbb4859 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -1121,7 +1121,7 @@ CommandCost CmdBuildRailStation(TileIndex tile_org, DoCommandFlag flags, uint32
/* Remove animation if overbuilding */
DeleteAnimatedTile(tile);
- byte old_specindex = IsTileType(tile, MP_STATION) ? GetCustomStationSpecIndex(tile) : 0;
+ byte old_specindex = HasStationTileRail(tile) ? GetCustomStationSpecIndex(tile) : 0;
MakeRailStation(tile, st->owner, st->index, axis, layout & ~1, rt);
/* Free the spec if we overbuild something */
DeallocateSpecFromStation(st, old_specindex);