Discord.ext.commands.errors.CommandInvokeError:

我的代码:



@commands.command(pass_context=True)

@commands.guild_only()

async def owner_mention(self, ctx):

    await ctx.send(ctx.guild.owner.mention)

错误:


Discord.ext.commands.errors.CommandInvokeError:命令引发异常:AttributeError:“NoneType”对象没有属性“提及”


幕布斯7119047
浏览 98回答 1
1回答

胡子哥哥

在新版本的discord.py(1.5.x)中,Intents. 意图就像权限。您需要定义它来向频道、成员等发送消息。import discord intents = discord.Intents().all() client = discord.Bot(prefix='', intents=intents)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python