有人能帮我吗?当我试图启动我的不和谐机器人时,我一直收到这个错误消息。
[2022-08-23 14:32:12] [WARNING ] discord.ext.commands.bot: Privileged message content intent is missing, commands may not work as expected.
这是bot的代码,后面是命令和事件以及client.run(My_Token)
import os
import random
import discord
from discord.ext import commands
from discord.ext import tasks
from discord.ext.commands import has_permissions, MissingPermissions
from discord.utils import get
from itertools import cycle
import json
import random
intents = discord.Intents.default()
intents.members = True
intents.typing = True
intents.presences = True
client = commands.Bot(command_prefix = "?", intents=intents)
client.remove_command('help')
status = cycle(["Minecraft", "Roblox", "Yo-Kai Watch"])
发布于 2022-08-25 02:26:11
你必须改变
intents = discord.Intents.default()
至
intents = discord.Intents.all()
这是v2.0 discord.py更新中一个未提及的更改。https://discordpy.readthedocs.io/en/latest/migrating.html
https://stackoverflow.com/questions/73458847
复制相似问题