(svn r9986) -Fix (r9934): flooding towns could not remove tram tracks (boekabart).

This commit is contained in:
rubidium 2007-05-30 13:16:45 +00:00
parent 6252272e87
commit a31e944149
1 changed files with 5 additions and 2 deletions

View File

@ -51,8 +51,11 @@ bool CheckAllowRemoveRoad(TileIndex tile, RoadBits remove, Owner owner, bool *ed
if (_game_mode == GM_EDITOR || remove == ROAD_NONE) return true;
/* Only do the special processing for actual players. */
if (rt == ROADTYPE_ROAD && !IsValidPlayer(_current_player)) return true;
/* Water can always flood and towns can always remove "normal" road pieces.
* Towns are not be allowed to remove non "normal" road pieces, like tram
* tracks as that would result in trams that cannot turn. */
if (_current_player == OWNER_WATER ||
(rt == ROADTYPE_ROAD && !IsValidPlayer(_current_player))) return true;
/* Only do the special processing if the road is owned
* by a town */