diff options
author | tpart <tpart120@proton.me> | 2024-09-19 16:25:23 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-19 16:25:27 +0200 |
commit | 0734251623aaea43382b95ae9ecab9ec1903e420 (patch) | |
tree | 1b9f66e3347b03f4ffabd54ab6f5eca494d3a94c /client/global.gd | |
parent | 21aaaa4819b1032e7e6ff693ea7caa623f3d2cc3 (diff) | |
download | hurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar hurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar.bz2 hurrycurry-0734251623aaea43382b95ae9ecab9ec1903e420.tar.zst |
Fix: Tutorial started setting not started (#127)
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 2 |
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 |