From 108365e96e6f2aaf8ca56f086bebe874db9d3755 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 20:52:05 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cromulant/game.py b/cromulant/game.py index 7cfa3ce..f7e424b 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -46,9 +46,10 @@ class Game: elif ant.method == "thinking": status = f"Thinking about {status}" - tooltip = Utils.to_date(ant.updated) - tooltip += f"\nTriumph: {ant.triumph}" - tooltip += f"\nHits: {ant.hits}" + tooltip = "" + tooltip += f"Updated: {Utils.to_date(ant.updated)}" + tooltip += f"\nCreated: {Utils.to_date(ant.created)}" + tooltip += f"\nTriumph: {ant.triumph} | Hits: {ant.hits}" image_label = Game.get_image(Config.status_image_path, color, tooltip=tooltip) right_container = Game.make_right_container(ant.name, status)