Merge pull request #6 from PacketParker/dev

Don't produce errors on NotOwner
This commit is contained in:
Parker M. 2024-09-18 22:28:39 +00:00 committed by GitHub
commit ba51348e45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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