From 748d80ff3bc3e4b108c013be9154784a956d2d0f Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 2 Nov 2021 23:21:21 -0700 Subject: [PATCH] Re-flip fast-forward option. This was set to default on by mistake (turned on for debugging and forgot to turn off before check in). The option itself may be going away soon in favor of explicit buttons, but keep the experimental feature off by default for now. --- game/settings/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/settings/settings.py b/game/settings/settings.py index ce86513a..7189755a 100644 --- a/game/settings/settings.py +++ b/game/settings/settings.py @@ -290,7 +290,7 @@ class Settings: "Fast forward mission to first contact (WIP)", page=MISSION_GENERATOR_PAGE, section=GAMEPLAY_SECTION, - default=True, + default=False, detail=( "If enabled, the mission will be generated at the point of first contact." ),