mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-31 07:09:26 +07:00
Resolved #3753 - Fallout is no longer added multiple times
This commit is contained in:
@ -407,7 +407,8 @@ object Battle {
|
||||
tile.improvementInProgress = null
|
||||
tile.turnsToImprovement = 0
|
||||
tile.roadStatus = RoadStatus.None
|
||||
if (tile.isLand && !tile.isImpassible()) tile.terrainFeatures.add("Fallout")
|
||||
if (tile.isLand && !tile.isImpassible() && !tile.terrainFeatures.contains("Fallout"))
|
||||
tile.terrainFeatures.add("Fallout")
|
||||
}
|
||||
|
||||
for (civ in attacker.getCivInfo().getKnownCivs()) {
|
||||
|
Reference in New Issue
Block a user