Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/zorak/cogs/admin/verification_on_verified.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,22 +147,22 @@ async def verify(self, ctx):
if hasattr(self.bot.server_settings, "verification_options"):
if "selectors" in self.bot.server_settings.verification_options:
if "✅" not in [role.name for role in ctx.author.roles]:
await ctx.respond(
await ctx.send(
"# ~ Verification ~ \n"
"_Before you can join the server, we need to make sure you are not a robot._\n"
"_Please answer the following question._"
, view=SelectView(self.bot, self.bot.server_settings.verification_options)
, ephemeral=True
)
else:
await ctx.respond("You are already verified. Go away.", ephemeral=True)
await ctx.send("You are already verified. Go away.", ephemeral=True)
else:
await ctx.respond(
await ctx.send(
"Please contact the @Staff. Verification is having technical problems."
, ephemeral=True
)
else:
await ctx.respond("Verification has not been set up!", ephemeral=True)
await ctx.send("Verification has not been set up!", ephemeral=True)


def setup(bot):
Expand Down
Loading