From cb189c30ad99908d0c0b0091779f63aa18d5a3db Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 04:05:42 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cromulant/game.py b/cromulant/game.py index 5747158..eb42433 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -180,16 +180,10 @@ class Game: text.append("Hatch some ants") else: text.append(f"Ants:{nb}{len(Ants.ants)}") - - hits = Ants.most_hits() - triumph = Ants.most_triumph() if triumph: text.append(f"Triumph:{nb}{triumph.name}") - if hits and (triumph and (hits.name != triumph.name)): - text.append(f"Hits:{nb}{hits.name}") - Window.info.setText(Config.info_separator.join(text)) Window.info.adjustSize()