aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-19 16:25:23 +0200
committertpart <tpart120@proton.me>2024-09-19 16:25:27 +0200
commit0734251623aaea43382b95ae9ecab9ec1903e420 (patch)
tree1b9f66e3347b03f4ffabd54ab6f5eca494d3a94c
parent21aaaa4819b1032e7e6ff693ea7caa623f3d2cc3 (diff)
downloadhurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar
hurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar.bz2
hurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar.zst
Fix: Tutorial started setting not started (#127)
-rw-r--r--client/global.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd
index b678f391..c020f8da 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -175,7 +175,7 @@ func set_hint(key: String, value: bool):
push_error("Tried to set hint \"%s\", which does not yet exist (missing key)" % key)
if profile["hints"][key] != value:
if value:
- set_setting("tutorial_started", true)
+ set_setting("gameplay.tutorial_started", true)
save_settings()
profile["hints"][key] = value
save_profile() # TODO avoid this call when bulk-unsetting hints