async def on_command_error(ctx, error):
if isinstance(error, BotMissingPermissions):
await ctx.send("I dont have the permission to do that")``
不工作,我猜这是因为我实际上得到了错误discord.errors.Forbidden: 403 Forbidden (error code: 50013): Missing Permissions
但我不知道该怎么做
我也在全局执行而不是每个命令
@bot.event
async def on_command_error(ctx, error):
if isinstance(error, discord.Forbidden):
await ctx.send("I dont have the permission to do that")