From 705bc3ea52c52f13bddf0946bdb77a5a3fef77c6 Mon Sep 17 00:00:00 2001 From: troido Date: Sat, 30 Dec 2017 12:49:28 +0100 Subject: added equipment display --- asciifarm/client/gameclient.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asciifarm/client/gameclient.py') 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": -- cgit