diff options
-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 |