From 5a7ebcb74fda1d072ec809920650ecd5b357dcad Mon Sep 17 00:00:00 2001 From: Xarlos89 <57622136+Xarlos89@users.noreply.github.com> Date: Sat, 11 Jan 2025 18:21:03 +0100 Subject: [PATCH] verification workaround --- src/zorak/cogs/admin/verification_on_verified.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/zorak/cogs/admin/verification_on_verified.py b/src/zorak/cogs/admin/verification_on_verified.py index 830d15da..68a72b7b 100644 --- a/src/zorak/cogs/admin/verification_on_verified.py +++ b/src/zorak/cogs/admin/verification_on_verified.py @@ -152,17 +152,15 @@ async def verify(self, ctx): "_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.send("You are already verified. Go away.", ephemeral=True) + await ctx.send("You are already verified. Go away.") else: await ctx.send( "Please contact the @Staff. Verification is having technical problems." - , ephemeral=True ) else: - await ctx.send("Verification has not been set up!", ephemeral=True) + await ctx.send("Verification has not been set up!") def setup(bot):