From 24a8216533f01e6d20f44f9631eb1ccd5a1f3dd3 Mon Sep 17 00:00:00 2001 From: tookender Date: Mon, 2 Sep 2024 00:05:38 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20Get=20rid=20of=20intword?= 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 432f038..ad1ea5f 100644 --- a/extensions/dq/calculators.py +++ b/extensions/dq/calculators.py @@ -15,8 +15,8 @@ async def calc_potential(self, ctx, current_power: int, current_upgrades: int, t upgrade_cost = calculate_upgrade_cost(current_upgrades, total_upgrades) potential = calculate_potential(current_power, current_upgrades, total_upgrades) - humanized_cost = f"({numerize.numerize.intword(upgrade_cost)})" - humanized_potential = f"({numerize.numerize.intword(potential)})" + humanized_cost = f"({numerize.numerize(upgrade_cost)})" + humanized_potential = f"({numerize.numerize(potential)})" embed = Embed( title="Potential Calculator",