aboutsummaryrefslogtreecommitdiff
path: root/client/system/settings.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/system/settings.gd')
-rw-r--r--client/system/settings.gd8
1 files changed, 1 insertions, 7 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd
index e1ef5c0d..734492ae 100644
--- a/client/system/settings.gd
+++ b/client/system/settings.gd
@@ -150,7 +150,6 @@ static func launch_setup():
static var change_hooks = {
"input": { "static": h_input },
- "gameplay.hints_started": { "static": h_hints_started },
"graphics.aa": { "static": h_aa },
"graphics.taa": { "static": h_taa },
"graphics.fullscreen": { "static": h_fullscreen },
@@ -196,9 +195,4 @@ static func h_fullscreen(mode: String):
"keep": pass
"always": DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN)
"never": if DisplayServer.window_get_mode() == DisplayServer.WINDOW_MODE_FULLSCREEN:
- DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED)
-
-static func h_hints_started(started: bool):
- if not started:
- for k in Profile.values["hints"].keys():
- Profile.set_hint(k, false)
+ DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) \ No newline at end of file