Skip to content

Commit

Permalink
fix: correct ammonite stats
Browse files Browse the repository at this point in the history
  • Loading branch information
metalcupcake5 committed Apr 6, 2024
1 parent 9500db7 commit d6f8923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants/pet-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -2752,7 +2752,7 @@ class BlueWhale extends Pet {
class Ammonite extends Pet {
get stats() {
return {
sea_creature_chance: this.level * 0.05 + (this.profile?.mining?.core?.tier?.level || 0),
sea_creature_chance: this.level * (0.05 + 0.01 * (this.profile?.mining?.core?.level?.level || 0)),
};
}

Expand Down

0 comments on commit d6f8923

Please sign in to comment.