diff options
Diffstat (limited to 'bot/exts/holidays/halloween/spookyreact.py')
-rw-r--r-- | bot/exts/holidays/halloween/spookyreact.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/halloween/spookyreact.py b/bot/exts/holidays/halloween/spookyreact.py index e228b91d..2cbabdb4 100644 --- a/bot/exts/holidays/halloween/spookyreact.py +++ b/bot/exts/holidays/halloween/spookyreact.py @@ -65,6 +65,6 @@ class SpookyReact(Cog): return False -def setup(bot: Bot) -> None: +async def setup(bot: Bot) -> None: """Load the Spooky Reaction Cog.""" - bot.add_cog(SpookyReact(bot)) + await bot.add_cog(SpookyReact(bot)) |