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