【发布时间】:2021-10-27 16:13:22
【问题描述】:
我已经尝试了所有方法,但没有任何效果。如何在 Discord 中附加本地缩略图?图片在 images 目录中
msg.py:
embed = discord.Embed(title="Game Started", description=body)
embed.add_field(name=captain1, value=', '.join(team_one), inline=False)
embed.add_field(name=captain2, value=', '.join(team_two))
embed.set_thumbnail(url=f"attachment://images/elite.png")
await ctx.send(embed=embed)
缩略图未显示
【问题讨论】:
标签: discord discord.py