diff options
Diffstat (limited to 'Archipelago/textclient.gd')
-rw-r--r-- | Archipelago/textclient.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Archipelago/textclient.gd b/Archipelago/textclient.gd index f100776..003ef8d 100644 --- a/Archipelago/textclient.gd +++ b/Archipelago/textclient.gd | |||
@@ -51,7 +51,7 @@ func _ready(): | |||
51 | 51 | ||
52 | func _input(event): | 52 | func _input(event): |
53 | if event is InputEventKey and event.pressed: | 53 | if event is InputEventKey and event.pressed: |
54 | if event.scancode == KEY_TAB: | 54 | if event.scancode == 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 |
57 | get_tree().paused = true | 57 | get_tree().paused = true |