From 8328962579b83c7d41542d0092c2e8387ae20026 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 27 Jul 2021 16:37:22 -0400 Subject: [PATCH] v0.9.4: fixed wands losing max charge boost from curse infuse or resin --- .../shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java index 13777c939..8d8076f45 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java @@ -501,6 +501,8 @@ public abstract class Wand extends Item { partialCharge = bundle.getFloat( PARTIALCHARGE ); curseInfusionBonus = bundle.getBoolean(CURSE_INFUSION_BONUS); resinBonus = bundle.getInt(RESIN_BONUS); + + updateLevel(); } @Override