diff options
Diffstat (limited to 'bot/seasons/halloween/spookyreact.py')
| -rw-r--r-- | bot/seasons/halloween/spookyreact.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/bot/seasons/halloween/spookyreact.py b/bot/seasons/halloween/spookyreact.py index f63cd7e5..229566e9 100644 --- a/bot/seasons/halloween/spookyreact.py +++ b/bot/seasons/halloween/spookyreact.py @@ -2,6 +2,7 @@ import logging  import re  import discord +from discord.ext.commands import Cog  log = logging.getLogger(__name__) @@ -16,7 +17,7 @@ SPOOKY_TRIGGERS = {  } -class SpookyReact: +class SpookyReact(Cog):      """      A cog that makes the bot react to message triggers. @@ -25,6 +26,7 @@ class SpookyReact:      def __init__(self, bot):          self.bot = bot +    @Cog.listener()      async def on_message(self, ctx: discord.Message):          """          A command to send the seasonalbot github project @@ -69,4 +71,4 @@ class SpookyReact:  def setup(bot):      bot.add_cog(SpookyReact(bot)) -    log.debug("SpookyReact cog loaded") +    log.info("Spooky react cog loaded") | 
