From a6e1bf29de8cfcb848e0284d764a8196650f332c Mon Sep 17 00:00:00 2001 From: codey Date: Fri, 31 Oct 2025 07:25:03 -0400 Subject: [PATCH] bugfix: Halloween command 12/25 isn't Christmas, apparently. Who knew? --- cogs/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/misc.py b/cogs/misc.py index c797c17..c0590a3 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -248,7 +248,7 @@ class Misc(commands.Cog): ) # Invalid countdown from util (days, hours, minutes, seconds, ms, _) = countdown now: datetime.datetime = datetime.datetime.now() - if now.month == 12 and now.day == 25: + if now.month == 10 and now.day == 31: return await ctx.respond("# IT IS HALLOWEEN!!!!!!!!\n-# GET ROWDY") halloween_trans: dict = str.maketrans(emojis) try: