diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-16 19:15:14 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-16 19:15:14 +0200 |
commit | e86637eade79ed5fef5ca2e9c169f5c40a314400 (patch) | |
tree | b488de0863414c51fcc6786e92c28f0afc651702 /client/settings.gd | |
parent | ebb5c295c03cb1689c081006ad2ee167bd355d0a (diff) | |
download | hurrycurry-e86637eade79ed5fef5ca2e9c169f5c40a314400.tar hurrycurry-e86637eade79ed5fef5ca2e9c169f5c40a314400.tar.bz2 hurrycurry-e86637eade79ed5fef5ca2e9c169f5c40a314400.tar.zst |
fix some bugs caused by Profile rename
Diffstat (limited to 'client/settings.gd')
-rw-r--r-- | client/settings.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/settings.gd b/client/settings.gd index 55a2b90e..1cacfce9 100644 --- a/client/settings.gd +++ b/client/settings.gd @@ -196,5 +196,5 @@ static func h_input(): static func h_hints_started(started: bool): if not started: - for k in Global.profile["hints"].keys(): + for k in Profile.values["hints"].keys(): Profile.set_hint(k, false) |