diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 14:39:50 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 14:39:50 -0400 |
commit | 1c361226240182db6f72f26c6fe0f0de65456239 (patch) | |
tree | cdcb276a20ff1e667e08b5839f593d06703727b6 /client/Archipelago/textclient.gd | |
parent | 3d61abde01f8bc2b0fc342849f2307d9dfe2aaf0 (diff) | |
download | lingo2-archipelago-1c361226240182db6f72f26c6fe0f0de65456239.tar.gz lingo2-archipelago-1c361226240182db6f72f26c6fe0f0de65456239.tar.bz2 lingo2-archipelago-1c361226240182db6f72f26c6fe0f0de65456239.zip |
[Client] Prevent text client on connection screen
Diffstat (limited to 'client/Archipelago/textclient.gd')
-rw-r--r-- | client/Archipelago/textclient.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Archipelago/textclient.gd b/client/Archipelago/textclient.gd index 4b03151..85cc6d2 100644 --- a/client/Archipelago/textclient.gd +++ b/client/Archipelago/textclient.gd | |||
@@ -50,7 +50,7 @@ func _ready(): | |||
50 | 50 | ||
51 | 51 | ||
52 | func _input(event): | 52 | func _input(event): |
53 | if event is InputEventKey and event.pressed: | 53 | if global.loaded and event is InputEventKey and event.pressed: |
54 | if event.keycode == KEY_TAB and !Input.is_key_pressed(KEY_SHIFT): | 54 | if event.keycode == KEY_TAB and !Input.is_key_pressed(KEY_SHIFT): |
55 | if !get_tree().paused: | 55 | if !get_tree().paused: |
56 | is_open = true | 56 | is_open = true |