Fix NotOwner error
This commit is contained in:
parent
ba51348e45
commit
90a409ecb2
@ -79,6 +79,10 @@ class Stats(commands.Cog):
|
||||
connection.close()
|
||||
await ctx.send(embed=embed)
|
||||
|
||||
@stats.error
|
||||
async def stats_error(self, ctx, error):
|
||||
return
|
||||
|
||||
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Stats(bot))
|
||||
|
@ -92,8 +92,5 @@ class Tree(app_commands.CommandTree):
|
||||
except discord.errors.InteractionResponded:
|
||||
await interaction.followup.send(embed=embed, ephemeral=True)
|
||||
|
||||
elif isinstance(error, NotOwner):
|
||||
pass
|
||||
|
||||
else:
|
||||
raise error
|
||||
|
Loading…
x
Reference in New Issue
Block a user