From 18bb4de57ef93b366570b1c489c2de55632f57d2 Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Mon, 27 Oct 2025 18:56:32 +0100 Subject: [PATCH] modified: app.py --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index c6889d5..f16b19b 100644 --- a/app.py +++ b/app.py @@ -1010,7 +1010,7 @@ async def hoi4stats(ctx, user: Optional[discord.Member] = None): ) embed.add_field( name="📅 Player Since", - value=player['created_at'].strftime("%m/%d/%Y"), + value=player['created_at'].strftime("%d/%m/%Y"), inline=True ) @@ -1232,7 +1232,7 @@ async def hoi4history(ctx, limit: Optional[int] = 10, player: Optional[discord.M teams[team] += 1 # Format date - finished_date = game['finished_at'].strftime("%m/%d/%Y %H:%M") if game['finished_at'] else "Unknown" + finished_date = game['finished_at'].strftime("%d/%m/%Y %H:%M") if game['finished_at'] else "Unknown" # Winner indicator winner = game['winner_team'] if game['winner_team'] else "Unknown"