This commit is contained in:
Auric Vente 2024-07-19 20:52:05 -06:00
parent 0cd8242b1a
commit 108365e96e
1 changed files with 4 additions and 3 deletions

View File

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