Skip to content

Commit

Permalink
Update formula
Browse files Browse the repository at this point in the history
  • Loading branch information
Iapetus-11 committed Jul 11, 2024
1 parent 880239b commit af57fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/cogs/commands/econ.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def msg_check(m):

def get_vault_max_cap_from_pickaxe(self, pickaxe: str) -> int:
pickaxe_level = len(self.d.mining.pickaxes) - self.d.mining.pickaxes.index(pickaxe)
return 2000 * (pickaxe_level**3)
return math.floor(100 * (pickaxe_level**4.5))

async def randomly_increase_vault(
self,
Expand Down

0 comments on commit af57fde

Please sign in to comment.