From 4108e9d6de64b4b8e9980a02158df34651986475 Mon Sep 17 00:00:00 2001 From: troido Date: Mon, 1 Jan 2018 21:46:05 +0100 Subject: server now sends list of sprites per cell to client. ground uses eventtarget too in interaction with room --- asciifarm/client/gameclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asciifarm/client/gameclient.py') diff --git a/asciifarm/client/gameclient.py b/asciifarm/client/gameclient.py index 0ab5fb5..b3b046b 100644 --- a/asciifarm/client/gameclient.py +++ b/asciifarm/client/gameclient.py @@ -86,7 +86,7 @@ class Client: mapping[spr]) for i, spr in enumerate(fieldCells)) - if msgType == 'changecells'and len(msg[1]): + if msgType == 'changecells' and len(msg[1]): self.display.drawFieldCells(msg[1]) if msgType == "playerpos": -- cgit