From 987f04f3085ad09b064ddf0942598cee11ac8185 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 21 Feb 2025 12:04:50 -0500 Subject: [PATCH] v3.0.0: fixed PoM stasis not preserving some buffs, e.g. enthrall --- .../shatteredpixeldungeon/actors/hero/spells/Stasis.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Stasis.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Stasis.java index 2c090f7c0..765e7486d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Stasis.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/Stasis.java @@ -99,7 +99,7 @@ public class Stasis extends ClericSpell { ally.sprite = null; Dungeon.level.mobs.remove(ally); for (Buff b : buffs){ - if (b.type == Buff.buffType.POSITIVE) { + if (b.type == Buff.buffType.POSITIVE || b.revivePersists) { ally.add(b); } }