diff options
author | tpart <tpart120@proton.me> | 2025-09-12 21:55:47 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-09-12 21:55:47 +0200 |
commit | 4261a51eae19bcc1818207ff041fa7be5fdacfda (patch) | |
tree | 62ee9a9dd531388004cba9986cede53db21f7959 /client/gui/overlays | |
parent | 538e2578032f81ea923503ec317a2b9c5a9a4c5a (diff) | |
download | hurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar hurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar.bz2 hurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar.zst |
Fix hide_overlays flipped
Diffstat (limited to 'client/gui/overlays')
-rw-r--r-- | client/gui/overlays/overlays.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gui/overlays/overlays.gd b/client/gui/overlays/overlays.gd index 2ffdd372..00778cdb 100644 --- a/client/gui/overlays/overlays.gd +++ b/client/gui/overlays/overlays.gd @@ -17,7 +17,7 @@ extends Control class_name Overlays func _ready(): - Settings.hook_changed_init("ui.hide_overlays", false, func (v): visible = v) + Settings.hook_changed_init("ui.hide_overlays", false, func (v): visible = not v) func _input(_event): if Input.is_action_just_pressed("toggle_overlay"): |