diff options
Diffstat (limited to 'bot/seasons/halloween/spookyreact.py')
-rw-r--r-- | bot/seasons/halloween/spookyreact.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/halloween/spookyreact.py b/bot/seasons/halloween/spookyreact.py index c6127298..37f42a86 100644 --- a/bot/seasons/halloween/spookyreact.py +++ b/bot/seasons/halloween/spookyreact.py @@ -5,7 +5,7 @@ import discord from discord.ext.commands import Bot, Cog from bot.constants import Month -from bot.decorators import in_month_listener +from bot.decorators import in_month log = logging.getLogger(__name__) @@ -26,8 +26,8 @@ class SpookyReact(Cog): def __init__(self, bot: Bot): self.bot = bot + @in_month(Month.october) @Cog.listener() - @in_month_listener(Month.october) async def on_message(self, ctx: discord.Message) -> None: """ A command to send the seasonalbot github project. |