summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/global.gd5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/global.gd b/client/global.gd
index 2ee550b0..b4d5a535 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -57,7 +57,7 @@ var default_settings := {
"debug_info": ToggleSetting.new(tr("Display debug info (Framerate, etc.)"), false),
"grass_amount": RangeSetting.new(tr("3D grass amount per grass tile"), 16, 0, 32),
"setup_complete": ToggleSetting.new(tr("Initial setup complete. (Uncheck and restart to reenter)"), false),
- "tutorial_started": ToggleSetting.new(tr("Tutorial started. (Uncheck and restart to replay)"), false),
+ "tutorial_started": ToggleSetting.new(tr("Tutorial started"), false),
"latch_boost": ToggleSetting.new(tr("Always extend boost to maximum duration"), true)
}
@@ -129,9 +129,10 @@ func apply_settings():
1:
get_tree().root.content_scale_mode = Window.CONTENT_SCALE_MODE_DISABLED
+ # Hints
if not get_setting("tutorial_started"):
for k in profile["hints"].keys():
- set_profile(k, false)
+ set_hint(k, false)
func update_language():
var lang_idx: int = get_setting("language")