如何删除嵌入的消息Discord.py?

时间:2018-08-05 17:12:43

标签: python python-3.x discord discord.py

嗨,我在自动删除邮件时遇到问题,这是我正在使用的嵌入内容

@commands.command(name='hug', pass_context=True, aliases=['hugs'])
    @commands.cooldown(5, 60, commands.BucketType.user)
    async def hug(self, context, member: discord.Member):
        """Hug your friend"""
        author = context.message.author.mention
        mention = member.mention

        hug = "{0} hugs {1}"

        choices = ['example.gif']

        image = random.choice(choices)

        embed = discord.Embed(description=hug.format(author, mention), colour=discord.Color(random.randint(0x000000, 0xFFFFFF)))
        embed.set_image(url=image)

        await self.bot.say(embed=embed)
        await asyncio.sleep(3) 
        await self.bot.delete_message(embed)

好像我在这里做错了,因为它会抛出错误

File "C:\Users\Tom\AppData\Local\Programs\Python\Python36-32\lib\site-packages\discord\client.py", line 1261, in delete_message
    channel = message.channel
AttributeError: 'Embed' object has no attribute 'channel'

2 个答案:

答案 0 :(得分:0)

您删除Embed所在的消息,而不是Embed本身。

sent = await self.bot.say(embed=embed)
await asyncio.sleep(3) 
await self.bot.delete_message(sent)

答案 1 :(得分:0)

现在要重写

# For on_message
await message.delete()

# For commands
await ctx.message.delete()

以及用于在编辑时删除嵌入内容

# msg would be when you send the message Ex. msg = await ctx.send(embed=embed)
# Make sure to specify what you want to edit with 'content' and 'embed'
await msg.edit(content='Content Here', embed=None)