diff --git a/android/assets/jsons/Civ V - Vanilla/TileImprovements.json b/android/assets/jsons/Civ V - Vanilla/TileImprovements.json index 346c40f5d6..aad3f03325 100644 --- a/android/assets/jsons/Civ V - Vanilla/TileImprovements.json +++ b/android/assets/jsons/Civ V - Vanilla/TileImprovements.json @@ -237,7 +237,7 @@ "civilopediaText": [{text:"Ancient ruins provide a one-time random bonus when explored"}] }, { "name": "City ruins", "uniques": ["Unpillagable"], "civilopediaText": [{text:"A bleak reminder of the destruction wreaked by War"}] }, - { "name": "City center", "uniques": ["Unpillagable"], + { "name": "City center", "uniques": ["Unpillagable", "Indestructible"], "civilopediaText": [{text:"Marks the center of a city"},{text:"Appearance changes with the technological era of the owning civilization"}] }, { "name": "Barbarian encampment", "uniques": ["Unpillagable"], "civilopediaText": [{text:"Home to uncivilized barbarians, will spawn a hostile unit from time to time"}] } diff --git a/core/src/com/unciv/logic/battle/Battle.kt b/core/src/com/unciv/logic/battle/Battle.kt index 5f43548455..f6339a9fd0 100644 --- a/core/src/com/unciv/logic/battle/Battle.kt +++ b/core/src/com/unciv/logic/battle/Battle.kt @@ -558,7 +558,9 @@ object Battle { } // Remove improvements, add fallout - tile.improvement = null + if (tile.improvement != null && !attacker.getTile().getTileImprovement()!!.hasUnique("Indestructible")) { + tile.improvement = null + } tile.improvementInProgress = null tile.turnsToImprovement = 0 tile.roadStatus = RoadStatus.None @@ -618,7 +620,9 @@ object Battle { } // Remove improvements - tile.improvement = null + if (tile.improvement != null && !attacker.getTile().getTileImprovement()!!.hasUnique("Indestructible")) { + tile.improvement = null + } tile.improvementInProgress = null tile.turnsToImprovement = 0 tile.roadStatus = RoadStatus.None