Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/cmds/automation/auto_verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ async def on_message(self, ctx: Message) -> None:
# Return if the message was sent by the bot to avoid recursion.
if ctx.author.bot:
return

# When a user types in un-verified-bot-commands, hold their hand in finding the how-to-talk channel so they can verify.
if ctx.channel.id == 1430556712313688225:
await ctx.reply(
"Hello! Welcome to the Hack The Box Discord! In-order to access the full server, please verify your account by following the instructions in <#1432333413980835840>.",
mention_author=True,
)
try:
await self.process_reverification(ctx.author)
except VerificationError as exc:
Expand Down