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 | 61a7b45dd92d1af8f8266e171779e1c43f9f53f7 (patch) | |
tree | 7d107f16227ff065912909d55da443c74ad80c80 | |
parent | 8c7e594b08cfaabf1f4d273bfc939d73726fd4e1 (diff) | |
download | openttd-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.
-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); } |