Skip to content

Commit

Permalink
❌ Get rid of intword
Browse files Browse the repository at this point in the history
  • Loading branch information
tookender committed Sep 1, 2024
1 parent cb35de0 commit 24a8216
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 @@ -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",
Expand Down

0 comments on commit 24a8216

Please sign in to comment.