diff options
author | Darkvater <Darkvater@openttd.org> | 2006-01-30 14:03:34 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-01-30 14:03:34 +0000 |
commit | 8316942f9184d28295fe9a5d2c7cf853ea18f585 (patch) | |
tree | 7d107f16227ff065912909d55da443c74ad80c80 | |
parent | 6f183780c9563c32f56ed169e0b504c538f71ebc (diff) | |
download | openttd-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |