From 8a53d4ac3799ff6f46153b3c4fdd43ea658c1360 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 16 Jun 2025 16:16:34 -0500 Subject: [PATCH] Remove tick-based mutation from behavioral model in objects.py --- world/objects.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/world/objects.py b/world/objects.py index c6bd3d6..5ad3380 100644 --- a/world/objects.py +++ b/world/objects.py @@ -273,9 +273,6 @@ class DefaultCell(BaseEntity): :param interactable: List of nearby entities (unused). :return: Self. """ - self.tick_count += 1 - if self.tick_count % 10 == 0: - self.behavioral_model = self.behavioral_model.mutate(1) if interactable is None: interactable = []