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):