diff options
Diffstat (limited to 'bot/exts/holidays/halloween/spookygif.py')
| -rw-r--r-- | bot/exts/holidays/halloween/spookygif.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/exts/holidays/halloween/spookygif.py b/bot/exts/holidays/halloween/spookygif.py index 7a90a8a9..41488678 100644 --- a/bot/exts/holidays/halloween/spookygif.py +++ b/bot/exts/holidays/halloween/spookygif.py @@ -35,4 +35,7 @@ class SpookyGif(commands.Cog): async def setup(bot: Bot) -> None: """Spooky GIF Cog load.""" + if not Tokens.giphy: + log.warning("No Giphy token. Not loading Giphy cog.") + return await bot.add_cog(SpookyGif(bot)) |