summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-01-30 14:03:34 +0000
committerDarkvater <darkvater@openttd.org>2006-01-30 14:03:34 +0000
commit61a7b45dd92d1af8f8266e171779e1c43f9f53f7 (patch)
tree7d107f16227ff065912909d55da443c74ad80c80 /openttd.c
parent8c7e594b08cfaabf1f4d273bfc939d73726fd4e1 (diff)
downloadopenttd-61a7b45dd92d1af8f8266e171779e1c43f9f53f7.tar.xz
(svn r3485) - [Post-PBS]: when reverting PBS and removing station-tile reservations a station can of course not be a crossing as well. Thanks glx.
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openttd.c b/openttd.c
index 50ca14de6..d25575910 100644
--- a/openttd.c
+++ b/openttd.c
@@ -1339,7 +1339,7 @@ bool AfterLoadGame(void)
CLRBIT(_m[tile].m5, 0);
// Clear PBS reservation on station
- if (IsTileType(tile, MP_STATION) && IsLevelCrossing(tile))
+ if (IsTileType(tile, MP_STATION))
CLRBIT(_m[tile].m3, 6);
} END_TILE_LOOP(tile, MapSizeX(), MapSizeY(), 0);
}