diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index eff7a2dce..2f827328b 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -539,6 +539,10 @@ public abstract class Level implements Bundlable { if (timeFreeze != null) timeFreeze.disarmPresses(); Swiftthistle.TimeBubble timeBubble = Dungeon.hero.buff(Swiftthistle.TimeBubble.class); if (timeBubble != null) timeBubble.disarmPresses(); + + //iron stomach does not persist through chasm falling + Talent.WarriorFoodImmunity foodImmune = Dungeon.hero.buff(Talent.WarriorFoodImmunity.class); + if (foodImmune != null) foodImmune.detach(); } public void seal(){