Fix NotOwner error

This commit is contained in:
Parker M. 2024-09-18 17:34:10 -05:00
parent ba51348e45
commit 90a409ecb2
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A
2 changed files with 4 additions and 3 deletions

View File

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

View File

@ -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