diff options
m--------- | agarnet | 0 | ||||
-rw-r--r-- | subscriber.py | 5 |
2 files changed, 4 insertions, 1 deletions
diff --git a/agarnet b/agarnet -Subproject accb52eb77cd92ac80737849cbbb765c72d0c96 +Subproject fcb201a3dc6bd867caacf94bb1e31a8c9f3b43f 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 |