Don't produce errors on NotOwner

This commit is contained in:
Parker M. 2024-09-18 17:27:24 -05:00
parent bde38c3a71
commit d90559fc65
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -92,5 +92,8 @@ 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