summaryrefslogtreecommitdiff
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
commit8316942f9184d28295fe9a5d2c7cf853ea18f585 (patch)
tree7d107f16227ff065912909d55da443c74ad80c80
parent6f183780c9563c32f56ed169e0b504c538f71ebc (diff)
downloadopenttd-8316942f9184d28295fe9a5d2c7cf853ea18f585.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.
-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);
}