diff options
| author | troido <troido@protonmail.com> | 2021-01-23 16:07:08 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2021-01-23 16:07:08 +0100 |
| commit | 3420305361c550cd1d57b277184d73d8b80cd76a (patch) | |
| tree | 79e9a08d786f9b906343cb7599ebe701426fc67e /asciifarmclient/gameclient.py | |
| parent | 6c897d8e4123899a3f9878a658fc1e9f8f7bfa51 (diff) | |
upgraded ratuil; fix special keyboard keys in curses client
Diffstat (limited to 'asciifarmclient/gameclient.py')
| -rw-r--r-- | asciifarmclient/gameclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarmclient/gameclient.py b/asciifarmclient/gameclient.py index 9d7bca6..92be2d4 100644 --- a/asciifarmclient/gameclient.py +++ b/asciifarmclient/gameclient.py @@ -60,7 +60,7 @@ class Client: def getInput(self): while True: - key = ratuil.inputs.get_key() + key = self.display.screen.get_key() self.queue.put(("input", key)) def close(self, msg=None): |
