v3.3.2: Fixed specific cases of ghost ally regenning past max HP

This commit is contained in:
Evan Debenham
2026-01-01 16:27:40 -05:00
committed by Evan Debenham
parent 403ed39957
commit 26bd0aada2

View File

@@ -419,6 +419,9 @@ public class DriedRose extends Artifact {
while (partialCharge > 1) { while (partialCharge > 1) {
ghost.HP++; ghost.HP++;
partialCharge--; partialCharge--;
if (ghost.HP == ghost.HT){
partialCharge = 0;
}
} }
} else { } else {
partialCharge = 0; partialCharge = 0;