From 959efe2d8ee2efb8f0cfa97313ef58e10cc25210 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 20:05:54 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cromulant/game.py b/cromulant/game.py index d0c1e08..2a96101 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -177,7 +177,7 @@ class Game: ants = sorted(Ants.ants, key=lambda ant: ant.updated) for ant in ants: - if ant.status: + if ant.status or ant.method: Game.add_status(ant) @staticmethod