v2.0.0: fixed iron stomach being used to cancel chasm damage

This commit is contained in:
Evan Debenham
2022-12-29 13:06:31 -05:00
parent e9e8ab684e
commit 936c41b01c

View File

@@ -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(){