Skip to content

Commit

Permalink
Fixed HeroStatRing showing desc incorrectly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smujb committed Feb 12, 2021
1 parent b98443a commit e2ff5c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public String statsInfo() {
}

public static int statBonus(Char target, Class<? extends RingBuff> buffClass) {
return (int) (4 * multiplier(target, buffClass));
return Math.round(4 * multiplier(target, buffClass));
}
}

0 comments on commit e2ff5c2

Please sign in to comment.