diff options
Diffstat (limited to 'client/Archipelago/textclient.gd')
| -rw-r--r-- | client/Archipelago/textclient.gd | 6 |
1 files changed, 1 insertions, 5 deletions
| diff --git a/client/Archipelago/textclient.gd b/client/Archipelago/textclient.gd index 6a0aa95..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 |
| @@ -76,10 +76,6 @@ func dismiss(): | |||
| 76 | 76 | ||
| 77 | 77 | ||
| 78 | func parse_printjson(text): | 78 | func parse_printjson(text): |
| 79 | if !label.text.is_empty(): | ||
| 80 | #label.newline() | ||
| 81 | pass | ||
| 82 | |||
| 83 | label.append_text("[p]" + text + "[/p]") | 79 | label.append_text("[p]" + text + "[/p]") |
| 84 | 80 | ||
| 85 | 81 | ||
