From 819bd92d9ab67006bf467be5442d6bb933d87de7 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 27 Aug 2023 11:15:44 +0200 Subject: [PATCH] Re-add removed FF-interrupt choice causing error Opening the options will trigger an exception which sort of breaks save-compatibility --- game/settings/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/game/settings/settings.py b/game/settings/settings.py index 9fead7b2..fcd910cf 100644 --- a/game/settings/settings.py +++ b/game/settings/settings.py @@ -538,6 +538,7 @@ class Settings: section=GAMEPLAY_SECTION, default=StartType.COLD, choices={ + "Never": None, "At startup time": StartType.COLD, "At taxi time": StartType.WARM, "At takeoff time": StartType.RUNWAY,