diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java index 6e8df85d6..9f382ccb1 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java @@ -209,7 +209,7 @@ public class WandOfRegrowth extends Wand { } else { //8 charges at base, plus: //2/3.33/5/7/10/14/20/30/50/110/infinite charges per hero level, based on wand level - float lvl = buffedLvl(); + float lvl = level(); return Math.round(8 + heroLvl * (2+lvl) * (1f + (lvl/(10 - lvl)))); } }