From 5cab78e2348dea6f2584d4f9142a8d026254e8c8 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 16 Nov 2021 14:44:51 -0500 Subject: [PATCH] v1.1.0: regrowth cap now correctly uses the wand's true level --- .../shatteredpixeldungeon/items/wands/WandOfRegrowth.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))); } }