diff options
Diffstat (limited to 'asciifarm/client/gameclient.py')
| -rw-r--r-- | asciifarm/client/gameclient.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/asciifarm/client/gameclient.py b/asciifarm/client/gameclient.py index 37335f5..d9d0c89 100644 --- a/asciifarm/client/gameclient.py +++ b/asciifarm/client/gameclient.py @@ -108,14 +108,11 @@ class Client: if maxHealth is None: self.log("You have died. Restart the client to respawn") if msgType == "inventory": - #self.display.setInventory(msg[1]) - self.display.inventory.setItems(msg[1]) + self.display.setInventory(msg[1]) if msgType == "equipment": - #self.display.setEquipment(msg[1]) - self.display.equipment.setItems(msg[1]) + self.display.setEquipment(msg[1]) if msgType == "ground": - #self.display.setGround(msg[1]) - self.display.ground.setItems(msg[1]) + self.display.setGround(msg[1]) if msgType == "message": self.log(*msg[1:]) if msgType == "options": |
