From 1b21a9adcd1a76e52307daa938a8b383c2400453 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Thu, 25 Jul 2024 20:32:15 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cromulant/game.py b/cromulant/game.py index 949f9ba..c8df2c6 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -200,12 +200,12 @@ class Game: @staticmethod def get_image(ant: Ant) -> QLabel: - if ant == Ants.top: - path = Config.top_image_path - elif ant.method == "hatched": + if ant.method == "hatched": path = Config.hatched_image_path elif ant.method == "terminated": path = Config.terminated_image_path + elif ant == Ants.top: + path = Config.top_image_path else: path = Config.status_image_path