From 8a43d5c5d61789b27b8b2620a078df7a3d817950 Mon Sep 17 00:00:00 2001 From: Alexander Korolyov <49795502+alkorolyov@users.noreply.github.com> Date: Sun, 17 May 2020 17:48:58 +0200 Subject: [PATCH] Change default value for new simulateUntilWinOrLose parameter. (#2632) By default it should be 0 - simulation turned off. --- core/src/com/unciv/UncivGame.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index 2d14baf889..24ef8921c7 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -50,7 +50,7 @@ class UncivGame( * Does not update World View changes until finished. * Set to 0 to disable. */ - var simulateUntilWinOrLose: Int = 1000 + var simulateUntilWinOrLose: Int = 0 /** Console log battles */