From c19d429228309f158d32862bacb8fdd5bfe9bb01 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 01:58:01 -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 c526c68..275fed6 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -188,7 +188,7 @@ class Game: if triumph: text.append(f"Triumph:{nb}{triumph.name}") - if hits: + if hits and (hits.name != triumph.name): text.append(f"Hits:{nb}{hits.name}") Window.info.setText(Config.info_separator.join(text))