(svn r18401) -Fix: drive through road stops did not get flooded

pull/155/head
rubidium 15 years ago
parent 8e2f402990
commit 2e2aa3e7da

@ -3173,6 +3173,9 @@ static void ChangeTileOwner_Station(TileIndex tile, Owner old_owner, Owner new_o
*/
static bool CanRemoveRoadWithStop(TileIndex tile, DoCommandFlag flags)
{
/* Yeah... water can always remove stops, right? */
if (_current_company == OWNER_WATER) return true;
Owner road_owner = _current_company;
Owner tram_owner = _current_company;

Loading…
Cancel
Save