aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/halloween/candy_collection.py
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-02-05 19:17:59 +0000
committerGravatar Chris <[email protected]>2021-02-05 19:17:59 +0000
commit0d5da9e1304865034e8a2349d33b132e149ad890 (patch)
treee39b5f94a79c98cc121d0b97714ead21fe96c5cb /bot/exts/halloween/candy_collection.py
parentMerge pull request #572 from Shivansh-007/feature/cheat.sh (diff)
First pass of easy to produce errors
Diffstat (limited to 'bot/exts/halloween/candy_collection.py')
-rw-r--r--bot/exts/halloween/candy_collection.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/exts/halloween/candy_collection.py b/bot/exts/halloween/candy_collection.py
index 0cb37ecd..40e21f40 100644
--- a/bot/exts/halloween/candy_collection.py
+++ b/bot/exts/halloween/candy_collection.py
@@ -47,6 +47,9 @@ class CandyCollection(commands.Cog):
@commands.Cog.listener()
async def on_message(self, message: discord.Message) -> None:
"""Randomly adds candy or skull reaction to non-bot messages in the Event channel."""
+ # Ignore messages in DMs
+ if not message.guild:
+ return
# make sure its a human message
if message.author.bot:
return