我试图为不和谐制作一个快速机器人,我使用了这段代码:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='0')
@bot.command(name='ping')
async def ping(ctx):
await ctx.send('Pong!')
bot.run('MY_DISCORD_BOT_TOKEN')
我得到这个错误:
BotBase.__init__() missing 1 required keyword-only argument: 'intents'
我不确定它缺少什么参数,因为我遇到过这样的错误