可能会从 Discord.py 1.7.3 迁移到 2.0尽管机器人出现在线,但仍导致命令无法执行。与早期版本不同,Discord.py 2.0 需要显式 Intent 声明,可以通过实现 Intents 机制来解决。
启用 Intents关于 Discord 开发者门户:
向机器人添加意图:
import discord from discord.ext import commands intents = discord.Intents.default() intents.message_content = True bot = commands.Bot(command_prefix='$', intents=intents, help_command=None)
测试结果:
按照以下步骤,您可以在升级的机器人中成功恢复 Discord.py 1.7.3 的命令执行功能。
以上是Discord.py 2.0 命令不起作用?如何启用意图以正确执行的详细内容。更多信息请关注PHP中文网其他相关文章!