From 26bd0aada275ee076ab8e22de5b98adfc58deeeb Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 1 Jan 2026 16:27:40 -0500 Subject: [PATCH] v3.3.2: Fixed specific cases of ghost ally regenning past max HP --- .../shatteredpixeldungeon/items/artifacts/DriedRose.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java index eddf84827..0b235f0c9 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java @@ -419,6 +419,9 @@ public class DriedRose extends Artifact { while (partialCharge > 1) { ghost.HP++; partialCharge--; + if (ghost.HP == ghost.HT){ + partialCharge = 0; + } } } else { partialCharge = 0;