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); } }