mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-25 15:19:51 +07:00
Do not generate fallout on impasssible terran. (#2830)
This commit is contained in:
@ -368,7 +368,7 @@ object Battle {
|
|||||||
tile.improvementInProgress = null
|
tile.improvementInProgress = null
|
||||||
tile.turnsToImprovement = 0
|
tile.turnsToImprovement = 0
|
||||||
tile.roadStatus = RoadStatus.None
|
tile.roadStatus = RoadStatus.None
|
||||||
if (tile.isLand) tile.terrainFeature = "Fallout"
|
if (tile.isLand && !tile.isImpassible()) tile.terrainFeature = "Fallout"
|
||||||
}
|
}
|
||||||
|
|
||||||
for(civ in attacker.getCivInfo().getKnownCivs()){
|
for(civ in attacker.getCivInfo().getKnownCivs()){
|
||||||
|
Reference in New Issue
Block a user