Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckySoLucky committed Nov 24, 2024
1 parent e85fa5c commit 65e3e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/stats/player_stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export function getPlayerStats(profile: Stats) {
}
}

if (profile.bestiary.milestone > 0) {
stats.health.bestiary = Math.floor(profile.bestiary.milestone / 10);
if (profile.bestiary.level > 0) {
stats.health.bestiary = Math.floor(profile.bestiary.level);
}

if (profile.pets.petScore.stats.magic_find > 0) {
Expand Down

0 comments on commit 65e3e8b

Please sign in to comment.