Skip to content

Commit

Permalink
πŸ”€ Flip values the correct way around
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Sep 1, 2024
1 parent 24a8216 commit ec05d3d
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,8 +20,8 @@ async def calc_potential(self, ctx, current_power: int, current_upgrades: int, t

embed = Embed(
title="Potential Calculator",
description=f"πŸ’ͺ **Max Power:** {potential:,} {humanized_cost if potential > 999 else ''}\n"\
f"πŸ’° **Upgrade Cost:** {upgrade_cost:,} {humanized_potential if upgrade_cost > 999 else ''}"
description=f"πŸ’ͺ **Max Power:** {potential:,} {humanized_potential if potential > 999 else ''}\n"\
f"πŸ’° **Upgrade Cost:** {upgrade_cost:,} {humanized_cost if upgrade_cost > 999 else ''}"
)

return await ctx.send(embed=embed)

0 comments on commit ec05d3d

Please sign in to comment.