diff options
| author | 2022-02-20 11:29:20 +0000 | |
|---|---|---|
| committer | 2022-02-20 11:29:20 +0000 | |
| commit | e232b7c4a870da800cbb40f2d5fbd0af8084be1f (patch) | |
| tree | 75262960566ab049653ce70176b77b73c0e2fee2 /bot/exts/holidays/halloween/candy_collection.py | |
| parent | Merge remote-tracking branch 'origin/main' into main (diff) | |
| parent | Allow `.src` in dev-contrib and community-meta (#1033) (diff) | |
Merge remote-tracking branch 'origin/main' into main
Diffstat (limited to 'bot/exts/holidays/halloween/candy_collection.py')
| -rw-r--r-- | bot/exts/holidays/halloween/candy_collection.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/holidays/halloween/candy_collection.py b/bot/exts/holidays/halloween/candy_collection.py index 729bbc97..220ba8e5 100644 --- a/bot/exts/holidays/halloween/candy_collection.py +++ b/bot/exts/holidays/halloween/candy_collection.py @@ -55,7 +55,7 @@ class CandyCollection(commands.Cog): if message.author.bot: return # ensure it's hacktober channel - if message.channel.id != Channels.community_bot_commands: + if message.channel.id != Channels.sir_lancebot_playground: return # do random check for skull first as it has the lower chance @@ -77,7 +77,7 @@ class CandyCollection(commands.Cog): return # check to ensure it is in correct channel - if message.channel.id != Channels.community_bot_commands: + if message.channel.id != Channels.sir_lancebot_playground: return # if its not a candy or skull, and it is one of 10 most recent messages, @@ -139,7 +139,7 @@ class CandyCollection(commands.Cog): @property def hacktober_channel(self) -> discord.TextChannel: """Get #hacktoberbot channel from its ID.""" - return self.bot.get_channel(Channels.community_bot_commands) + return self.bot.get_channel(Channels.sir_lancebot_playground) @staticmethod async def send_spook_msg( |