# HG changeset patch # User Darkvater # Date 1138629814 0 # Node ID f54492d3dea8d239d938b8dee0db090d4f87677b # Parent 414b96d4d4fb1bf409beb808e3461598d8b3e917 (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. diff -r 414b96d4d4fb -r f54492d3dea8 openttd.c --- a/openttd.c Sun Jan 29 23:04:51 2006 +0000 +++ b/openttd.c Mon Jan 30 14:03:34 2006 +0000 @@ -1339,7 +1339,7 @@ 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); }