这里有这样一个问题:discord 中出现了“Send to think about your behavior”的功能(类似于 mut)。 当然我想把它放在机器人上:
@bot.command()
async def timeout(ctx, member: discord.Member, time, reason):
await member.timeout(until=time, reason=reason)
await ctx.send(f'Участник {member.mention} был замучен.\nПричина: {reason}')
错误:
CommandInvokeError: Command raised an exception: AttributeError: 'Member' object has no attribute 'timeout'
我试图在互联网上找到解决问题的方法,但没有找到。
问题是您没有使用最新版本的
pycord/discord.py
. 哪个还没有这个功能。更新库的解决方案