This commit is contained in:
Auric Vente 2024-07-19 20:05:54 -06:00
parent f04927a453
commit 959efe2d8e
1 changed files with 1 additions and 1 deletions

View File

@ -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