mirror of
https://github.com/yairm210/Unciv.git
synced 2025-08-01 07:39:20 +07:00
Resolved #3285 - added a notification when cities are no longer in resistance
This commit is contained in:
@ -313,7 +313,11 @@ class CityInfo {
|
||||
cityStats.update()
|
||||
tryUpdateRoadStatus()
|
||||
attackedThisTurn = false
|
||||
if (isInResistance()) resistanceCounter--
|
||||
if (isInResistance()) {
|
||||
resistanceCounter--
|
||||
if (!isInResistance())
|
||||
civInfo.addNotification("The resistance in [$name] has ended!", location, Color.YELLOW)
|
||||
}
|
||||
|
||||
if (isPuppet) reassignPopulation()
|
||||
}
|
||||
|
Reference in New Issue
Block a user