【问题标题】:Remove 'command not found' error discord.py删除“找不到命令”错误 discord.py
【发布时间】:2019-03-24 19:15:23
【问题描述】:
在 discord.py rewrite bot 中,如果有人键入 bots 前缀,然后是其后的任何文本,如果没有找到该文本作为命令,您将得到 p>
Ignoring exception in command None:
discord.ext.commands.errors.CommandNotFound: Command "sd" is not found
有没有办法阻止机器人记录这个?
【问题讨论】:
标签:
python
python-3.x
discord
discord.py
discord.py-rewrite
【解决方案1】:
@client.event
async def on_command_error(ctx, error):
if isinstance(error, CommandNotFound):
return
【解决方案2】:
你可以试试这个,只需更改“em”部分内的标题和描述即可。
@client.event
async def on_command_error(ctx, error):
if isinstance(error, commands.CommandNotFound):
em = discord.Embed(title=f"Error!!!", description=f"Command not found.", color=ctx.author.color)
await ctx.send(embed=em)
【解决方案3】:
编写一个on_command_error 错误处理程序,检查错误是否是CommandNotFound 的实例,如果是则忽略它
from discord.ext.commands import CommandNotFound
@bot.event
async def on_command_error(ctx, error):
if isinstance(error, CommandNotFound):
return
raise error