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/spookynamerate.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/spookynamerate.py')
| -rw-r--r-- | bot/exts/holidays/halloween/spookynamerate.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/exts/holidays/halloween/spookynamerate.py b/bot/exts/holidays/halloween/spookynamerate.py index a3aa4f13..02fb71c3 100644 --- a/bot/exts/holidays/halloween/spookynamerate.py +++ b/bot/exts/holidays/halloween/spookynamerate.py @@ -223,7 +223,7 @@ class SpookyNameRate(Cog):          if self.first_time:              await channel.send(                  "Okkey... Welcome to the **Spooky Name Rate Game**! It's a relatively simple game.\n" -                f"Everyday, a random name will be sent in <#{Channels.community_bot_commands}> " +                f"Everyday, a random name will be sent in <#{Channels.sir_lancebot_playground}> "                  "and you need to try and spookify it!\nRegister your name using "                  f"`{Client.prefix}spookynamerate add spookified name`"              ) @@ -359,10 +359,10 @@ class SpookyNameRate(Cog):          """Gets the sir-lancebot-channel after waiting until ready."""          await self.bot.wait_until_ready()          channel = self.bot.get_channel( -            Channels.community_bot_commands -        ) or await self.bot.fetch_channel(Channels.community_bot_commands) +            Channels.sir_lancebot_playground +        ) or await self.bot.fetch_channel(Channels.sir_lancebot_playground)          if not channel: -            logger.warning("Bot is unable to get the #seasonalbot-commands channel. Please check the channel ID.") +            logger.warning("Bot is unable to get the #sir-lancebot-playground channel. Please check the channel ID.")          return channel      @staticmethod  |