Skip to content

Commit

Permalink
✨ No inline
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Sep 1, 2024
1 parent 0d52706 commit f47fd79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/dq/calculators.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async def calc_potential(self, ctx, current_power: int, current_upgrades: int, t

embed = Embed(title="Potential Calculator")

embed.add_field(name="💪 Max Power", value=f"{potential:,} {humanized_potential if potential > 999 else ''}")
embed.add_field(name="💰 Upgrade Cost", value=f"{upgrade_cost:,} {humanized_cost if upgrade_cost > 999 else ''}")
embed.add_field(name="💪 Max Power", value=f"{potential:,} {humanized_potential if potential > 999 else ''}", inline=False)
embed.add_field(name="💰 Upgrade Cost", value=f"{upgrade_cost:,} {humanized_cost if upgrade_cost > 999 else ''}", inline=False)

return await ctx.send(embed=embed)

0 comments on commit f47fd79

Please sign in to comment.