Skip to content

Commit

Permalink
Magnificent
Browse files Browse the repository at this point in the history
  • Loading branch information
paris-ci committed Dec 11, 2023
1 parent d60de57 commit 7e41a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cogs/prestige_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def daily(self, ctx: MyContext):
)
return False

max_experience = int(3 * log(db_hunter.prestige ** 20))
max_experience = int(3 * log(db_hunter.prestige ** 20)) * (1 + db_hunter.prestige // 100)
distrib = statistics.NormalDist(max_experience / 2, max_experience / 6)
added_experience = int(distrib.samples(1)[0])

Expand Down

0 comments on commit 7e41a98

Please sign in to comment.