summaryrefslogtreecommitdiff
path: root/subscriber.py
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2015-08-24 22:28:40 +0200
committerFlorian Jung <flo@windfisch.org>2015-08-24 22:28:40 +0200
commit12557023aec828af6a9a78473273389750d68330 (patch)
treec6baeafb7396358aa512c8c8dfa37b4d51791e42 /subscriber.py
parent8a44a7c1f11211d56d54c185dc8fdc90e35f221b (diff)
remove annoying debug output
Diffstat (limited to 'subscriber.py')
-rw-r--r--subscriber.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/subscriber.py b/subscriber.py
index feddf04..3312cbd 100644
--- a/subscriber.py
+++ b/subscriber.py
@@ -86,11 +86,9 @@ class EnhancingSubscriber(DummySubscriber):
for cid in self.c.world.cells:
if cid not in self.history:
self.history[cid] = CellHistory()
- print("unknown cell")
self.history[cid].poslog.append(self.c.world.cells[cid].pos.copy())
self.c.world.cells[cid].poslog = self.history[cid].poslog
- print("poslog of size="+str(len(self.history[cid].poslog)))
self.history[cid].stale = False