From d24c641f303c89e4bfd81876a8208eeab3c4b600 Mon Sep 17 00:00:00 2001 From: tpart Date: Tue, 30 Sep 2025 15:09:16 +0200 Subject: Don't show controls explanation if tutorial is disabled --- client/system/settings.gd | 7 +++---- 1 file 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) -- cgit v1.2.3-70-g09d2