Discord.py机器人没有在嵌入中使用正确的文本格式,而仅在移动设备上使用?

时间:2019-12-29 20:57:41

标签: python discord discord.py discord.py-rewrite

这是桌面应用程序上的样子:https://imgur.com/a/iDTrHsy

这是在移动设备(Android)上的外观:https://imgur.com/a/RV3tvZJ

这是我的代码:

@client.command()
async def draw(ctx):
    group_of_items = [
                    '[***Seiyaryu***](link)',
                    '[Crawling Dragon #2](link)']
    num_to_select = 2
    list_of_random_items = random.sample(group_of_items, num_to_select)
    first_random_item = list_of_random_items[0]
    second_random_item = list_of_random_items[1]
    embed = discord.Embed(
        description = f'You drew: {first_random_item}\nand\n{second_random_item}',
        colour = discord.Colour.from_rgb(47,128,49)
        )
    embed.set_footer(text="Bot of Greed", icon_url="link")
    await ctx.send(embed=embed)

有什么方法可以解决此问题,以便它还能在移动设备上显示文本格式?

1 个答案:

答案 0 :(得分:2)

您无能为力,而且多年来一直是一个问题。
我对Discord修复它的希望不大。