Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Dec 2, 2023
1 parent 61ae692 commit 53ff86d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sizebot/lib/quake.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def jump_joules(user: User) -> Decimal:
return scale_to_joules(user, G, JUMP_FACTOR)

def breath_joules(user: User) -> Decimal:
return Decimal(BREATH_JOULES * (user.scale ** 4))
return Decimal(BREATH_JOULES) * (user.scale ** 3)

def poke_joules(user: User) -> Decimal:
return Decimal(POKE_JOULES * (user.scale ** 4))
return Decimal(POKE_JOULES) * (user.scale ** 3)

0 comments on commit 53ff86d

Please sign in to comment.