diff options
| author | 2021-10-14 22:34:41 +0100 | |
|---|---|---|
| committer | 2021-10-14 22:34:41 +0100 | |
| commit | 4fd0acedd4b6f994ecb3299b93ea48115f61d785 (patch) | |
| tree | 1bed49893eada22908fb93632bbfe88eaa6f00ed /bot/exts/holidays/halloween/spookyreact.py | |
| parent | Change pascal's triangle image (diff) | |
| parent | Add support to query AoC results in respect of days and stars (#857) (diff) | |
Merge branch 'main' into fix-pascal-triangle-image
Diffstat (limited to 'bot/exts/holidays/halloween/spookyreact.py')
| -rw-r--r-- | bot/exts/holidays/halloween/spookyreact.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/exts/holidays/halloween/spookyreact.py b/bot/exts/holidays/halloween/spookyreact.py index 25e783f4..e228b91d 100644 --- a/bot/exts/holidays/halloween/spookyreact.py +++ b/bot/exts/holidays/halloween/spookyreact.py @@ -47,12 +47,12 @@ class SpookyReact(Cog): Short-circuit helper check. Return True if: - * author is the bot + * author is a bot * prefix is not None """ - # Check for self reaction - if message.author == self.bot.user: - log.debug(f"Ignoring reactions on self message. Message ID: {message.id}") + # Check if message author is a bot + if message.author.bot: + log.debug(f"Ignoring reactions on bot message. Message ID: {message.id}") return True # Check for command invocation |