# HG changeset patch # User Darkvater # Date 1138629814 0 # Node ID e29a0c68639c58f906bf94ef2871f8a4da2616e1 # Parent 6a7dbba467e4e03ba088fdb9c96d32dbdbf034eb (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 --git a/openttd.c b/openttd.c --- a/openttd.c +++ b/openttd.c @@ -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); }