diff options
-rw-r--r-- | client/system/settings.gd | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd index 737ab84e..1a257472 100644 --- a/client/system/settings.gd +++ b/client/system/settings.gd @@ -198,7 +198,6 @@ static func h_fullscreen(mode: String): DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) static func h_tutorial_disabled(val: bool): - if not val: - for input_method: String in ["keyboard", "joypad"]: - for hand_count: String in ["one", "two"]: - Profile.write("controls_%s_%s_handed_explained" % [input_method, hand_count], false) + for input_method: String in ["keyboard", "joypad"]: + for hand_count: String in ["one", "two"]: + Profile.write("controls_%s_%s_handed_explained" % [input_method, hand_count], val) |