diff options
author | Parker <contact@pkrm.dev> | 2024-09-18 22:34:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 22:34:33 +0000 |
commit | c5db4f0afdb65fd4f9068d90d76892eec3071189 (patch) | |
tree | 114da8d9196938598be03f7c5d2c7424a050c9d4 /code/utils | |
parent | ba51348e4587020f40dad5adbfe65923f9e4d09c (diff) | |
parent | 90a409ecb2a6d170e0b57fac378b6286d6573cf6 (diff) |
Merge pull request #7 from PacketParker/dev
Fix NotOwner error
Diffstat (limited to 'code/utils')
-rw-r--r-- | code/utils/command_tree.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/code/utils/command_tree.py b/code/utils/command_tree.py index 12be612..947a58c 100644 --- a/code/utils/command_tree.py +++ b/code/utils/command_tree.py @@ -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 |