Properly subclass CommandTree for errors

This commit is contained in:
Parker M. 2024-07-10 16:31:29 -05:00
parent b31573a1ef
commit 8ffb070347
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -1,5 +1,4 @@
import discord import discord
from discord.ext import commands
from discord import app_commands from discord import app_commands
from discord.ext.commands.errors import * from discord.ext.commands.errors import *
import datetime import datetime
@ -9,12 +8,10 @@ from config import BOT_COLOR
from custom_source import LoadError from custom_source import LoadError
class slash_handlers(commands.Cog): class Tree(app_commands.CommandTree):
def __init__(self, bot): async def on_error(
self.bot = bot self, interaction: discord.Interaction, error: app_commands.AppCommandError
bot.tree.on_error = self.on_error ):
async def on_error(self, interaction: discord.Interaction, error):
music_commands = [ music_commands = [
"play", "play",
"clear", "clear",
@ -83,11 +80,3 @@ class slash_handlers(commands.Cog):
else: else:
raise error raise error
@commands.Cog.listener()
async def on_command_error(self, ctx, error):
return
async def setup(bot: commands.Bot):
await bot.add_cog(slash_handlers(bot))