File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ object NextTurnAutomation {
352
352
}
353
353
}
354
354
355
- private fun automateCityBombardment (civInfo : Civilization ) {
355
+ fun automateCityBombardment (civInfo : Civilization ) {
356
356
for (city in civInfo.cities) UnitAutomation .tryBombardEnemy(city)
357
357
}
358
358
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class TurnManager(val civInfo: Civilization) {
31
31
32
32
fun startTurn (progressBar : NextTurnProgress ? = null) {
33
33
if (civInfo.isSpectator()) return
34
-
34
+
35
35
civInfo.threatManager.clear()
36
36
if (civInfo.isMajorCiv() && civInfo.isAlive()) {
37
37
civInfo.statsHistory.recordRankingStats(civInfo)
@@ -225,6 +225,8 @@ class TurnManager(val civInfo: Civilization) {
225
225
226
226
227
227
fun endTurn (progressBar : NextTurnProgress ? = null) {
228
+ NextTurnAutomation .automateCityBombardment(civInfo) // Bombard with all cities that haven't, maybe you missed one
229
+
228
230
val notificationsLog = civInfo.notificationsLog
229
231
val notificationsThisTurn = Civilization .NotificationsLog (civInfo.gameInfo.turns)
230
232
notificationsThisTurn.notifications.addAll(civInfo.notifications)
You can’t perform that action at this time.
0 commit comments