v3.0.0: fixed PoM stasis not preserving some buffs, e.g. enthrall

This commit is contained in:
Evan Debenham
2025-02-21 12:04:50 -05:00
parent a73473836f
commit 987f04f308

View File

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