mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-25 10:26:05 +07:00
Resolves #10599 - Cities you haven't bombarded with will auto-bombard at turn end
This commit is contained in:
parent
e872f5ade4
commit
7162011d26
@ -352,7 +352,7 @@ object NextTurnAutomation {
|
||||
}
|
||||
}
|
||||
|
||||
private fun automateCityBombardment(civInfo: Civilization) {
|
||||
fun automateCityBombardment(civInfo: Civilization) {
|
||||
for (city in civInfo.cities) UnitAutomation.tryBombardEnemy(city)
|
||||
}
|
||||
|
||||
|
@ -225,6 +225,8 @@ class TurnManager(val civInfo: Civilization) {
|
||||
|
||||
|
||||
fun endTurn(progressBar: NextTurnProgress? = null) {
|
||||
NextTurnAutomation.automateCityBombardment(civInfo) // Bombard with all cities that haven't, maybe you missed one
|
||||
|
||||
val notificationsLog = civInfo.notificationsLog
|
||||
val notificationsThisTurn = Civilization.NotificationsLog(civInfo.gameInfo.turns)
|
||||
notificationsThisTurn.notifications.addAll(civInfo.notifications)
|
||||
|
Loading…
Reference in New Issue
Block a user