diff options
| -rw-r--r-- | asciifarmclient/gameclient.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/asciifarmclient/gameclient.py b/asciifarmclient/gameclient.py index d677636..44219f2 100644 --- a/asciifarmclient/gameclient.py +++ b/asciifarmclient/gameclient.py @@ -131,6 +131,9 @@ class Client: if msgType == "message": type, text = msg[1][:2] self.log(text, type) + if msgType == "messages": + for type, text in msg[1]: + self.log(text, type) if msgType == "options": if msg[1] != None: description, options = msg[1] |
