From ec05d3d5eef0d26cc058a188d7148565fe7f40e0 Mon Sep 17 00:00:00 2001 From: tookender Date: Sun, 1 Sep 2024 22:06:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20Flip=20values=20the=20correct=20?= =?UTF-8?q?way=20around?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extensions/dq/calculators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/dq/calculators.py b/extensions/dq/calculators.py index ad1ea5f..f765f1a 100644 --- a/extensions/dq/calculators.py +++ b/extensions/dq/calculators.py @@ -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) \ No newline at end of file