From bc993717e7f2d50314271d6f0046157643841e1a Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Tue, 16 Apr 2024 11:41:55 +0100 Subject: [PATCH] Move "today" counter --- src/cogs/quote_quota.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cogs/quote_quota.py b/src/cogs/quote_quota.py index 56da82f..d333219 100644 --- a/src/cogs/quote_quota.py +++ b/src/cogs/quote_quota.py @@ -269,8 +269,8 @@ class QuoteQuota(commands.Cog): name="Donald Trump", value=( f"**All time:** {trump_stats['all_time']:,}\n" - f"**Last Week:** {trump_stats['week']:,} ({trump_stats['per_day']:.1f}/day)\n" f"**Today:** {trump_stats['today']:,}\n" + f"**Last Week:** {trump_stats['week']:,} ({trump_stats['per_day']:.1f}/day)\n" f"**Last 24 Hours:** {trump_stats['day']:,} ({trump_stats['per_hour']:.1f}/hour)\n" f"**Last Hour:** {trump_stats['hour']:,} ({trump_stats['per_minute']:.1f}/min)" ), @@ -279,8 +279,8 @@ class QuoteQuota(commands.Cog): name="Andrew Tate", value=( f"**All time:** {tate_stats['all_time']:,}\n" - f"**Last Week:** {tate_stats['week']:,} ({tate_stats['per_day']:.1f}/day)\n" f"**Today:** {tate_stats['today']:,}\n" + f"**Last Week:** {tate_stats['week']:,} ({tate_stats['per_day']:.1f}/day)\n" f"**Last 24 Hours:** {tate_stats['day']:,} ({tate_stats['per_hour']:.1f}/hour)\n" f"**Last Hour:** {tate_stats['hour']:,} ({tate_stats['per_minute']:.1f}/min)" ),