summaryrefslogtreecommitdiff
path: root/client/settings.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/settings.gd')
-rw-r--r--client/settings.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/settings.gd b/client/settings.gd
index 6fab0d5c..ec605899 100644
--- a/client/settings.gd
+++ b/client/settings.gd
@@ -26,7 +26,7 @@ static func get_root():
ToggleSetting.new("usernames", true),
ToggleSetting.new("setup_completed", false),
ToggleSetting.new("tutorial_disabled", false),
- ToggleSetting.new("tutorial_started", false),
+ ToggleSetting.new("hints_started", false),
ToggleSetting.new("latch_boost", true),
ToggleSetting.new("accessible_movement", false),
]),
@@ -92,7 +92,7 @@ static func get_category_dict(prefix: String):
static var change_hooks_display = {}
static var change_hooks_apply = {
"input": h_input,
- "gameplay.tutorial_started": h_tutorial_started,
+ "gameplay.hints_started": h_hints_started,
"graphics.aa": h_aa,
"graphics.taa": h_taa,
"graphics.fullscreen": h_fullscreen,
@@ -164,7 +164,7 @@ static func h_fullscreen(mode: String):
static func h_input():
InputManager.apply_input_map(Settings.get_category_dict("input"))
-static func h_tutorial_started(started: bool):
+static func h_hints_started(started: bool):
if not started:
for k in Global.profile["hints"].keys():
Global.set_hint(k, false)