From 61a7b45dd92d1af8f8266e171779e1c43f9f53f7 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 30 Jan 2006 14:03:34 +0000 Subject: [PATCH] (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. --- openttd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openttd.c b/openttd.c index 50ca14de65..d25575910b 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); }