make prices in line

This commit is contained in:
Luke Robles 2023-04-26 20:44:27 -07:00
parent 5effcd8e84
commit 773eb0ddae

View File

@ -42,9 +42,9 @@ async def get_ship(ship_name):
) )
embed.set_thumbnail(url=ship_picture) embed.set_thumbnail(url=ship_picture)
embed.set_author(name="Star Citizen API Info about the %s" % ship["name"]) embed.set_author(name="Star Citizen API Info about the %s" % ship["name"])
embed.add_field(name="**Ingame Price**", value=ingame_price, inline=False) embed.add_field(name="**Ingame Price**", value=ingame_price, inline=True)
embed.add_field( embed.add_field(
name="**Pledge Price**", value=real_money_price[0].text, inline=False name="**Pledge Price**", value=real_money_price[0].text, inline=True
) )
embed.add_field(name="**Description**", value=ship["description"], inline=False) embed.add_field(name="**Description**", value=ship["description"], inline=False)
embed.add_field( embed.add_field(