机器人没有权限时的 discord.py 例外


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")

相关内容

  • 没有找到相关文章

最新更新