summaryrefslogtreecommitdiff
path: root/subscriber.py
diff options
context:
space:
mode:
Diffstat (limited to 'subscriber.py')
-rw-r--r--subscriber.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/subscriber.py b/subscriber.py
index b89a6a9..54c03cc 100644
--- a/subscriber.py
+++ b/subscriber.py
@@ -105,7 +105,10 @@ class EnhancingSubscriber(DummySubscriber):
if eater_id not in self.victims:
self.victims[eater_id] = []
- self.victims[eater_id] += [(self.c.world.cells[eaten_id], self.time)]
+ try:
+ self.victims[eater_id] += [(self.c.world.cells[eaten_id], self.time)]
+ except KeyError:
+ pass
def on_world_update_post(self):
self.c.world.time = self.time