【发布时间】:2020-10-29 03:31:20
【问题描述】:
您好,我在自动删除消息时遇到问题,这是我正在使用的嵌入内容
@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'
【问题讨论】:
标签: python python-3.x discord discord.py