diff options
| author | troido <troido@hotmail.com> | 2017-12-30 12:49:28 +0100 |
|---|---|---|
| committer | troido <troido@hotmail.com> | 2017-12-30 12:49:28 +0100 |
| commit | 705bc3ea52c52f13bddf0946bdb77a5a3fef77c6 (patch) | |
| tree | 00cabf5e7b0003d3750aa6e57544ef1416d8543b /asciifarm/client/gameclient.py | |
| parent | b63f38d654814d6be7a56ee7c8c6c6567755e0b4 (diff) | |
added equipment display
Diffstat (limited to 'asciifarm/client/gameclient.py')
| -rw-r--r-- | asciifarm/client/gameclient.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asciifarm/client/gameclient.py b/asciifarm/client/gameclient.py index fb030d5..565262d 100644 --- a/asciifarm/client/gameclient.py +++ b/asciifarm/client/gameclient.py @@ -107,6 +107,8 @@ Default Controls: self.log("You have died. Restart the client to respawn") if msgType == "inventory": self.display.setInventory(msg[1]) + if msgType == "equipment": + self.display.setEquipment(msg[1]) if msgType == "ground": self.display.setGround(msg[1]) if msgType == "message": |
