1
0
Fork 0

(svn r22821) -Fix [FS#4741]: Allow to demolish aqueducts built in the scenario editor.

release/1.2
terkhen 2011-08-24 12:19:12 +00:00
parent 70179db81e
commit bbdc8fdba7
1 changed files with 7 additions and 1 deletions

View File

@ -673,9 +673,15 @@ static inline CommandCost CheckAllowRemoveTunnelBridge(TileIndex tile)
} }
case TRANSPORT_RAIL: case TRANSPORT_RAIL:
case TRANSPORT_WATER:
return CheckOwnership(GetTileOwner(tile)); return CheckOwnership(GetTileOwner(tile));
case TRANSPORT_WATER: {
/* Always allow to remove aqueducts without owner. */
Owner aqueduct_owner = GetTileOwner(tile);
if (aqueduct_owner == OWNER_NONE) aqueduct_owner = _current_company;
return CheckOwnership(aqueduct_owner);
}
default: NOT_REACHED(); default: NOT_REACHED();
} }
} }