From f30502d54404116cd390c9fcb56f50aa7a6bd7e8 Mon Sep 17 00:00:00 2001 From: yuki Date: Thu, 9 Oct 2025 05:08:33 -0300 Subject: [PATCH] add daily list error --- commands/top.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commands/top.py b/commands/top.py index 411b377..923ea34 100644 --- a/commands/top.py +++ b/commands/top.py @@ -51,6 +51,10 @@ def setup(bot: bot.Bot): timeframe = "7day" period = "in the past week" + if timeframe == "1day": + await ctx.send(u.error_msg("Daily lists are not yet supported. Sorry!!")) + return + try: temp_msg = await ctx.send(f"Generating top {entity}s list for **{username}**...")