diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Berry.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Berry.java index 20cca8738..d08ea1306 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Berry.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Berry.java @@ -41,7 +41,10 @@ public class Berry extends Food { @Override protected float eatingTime(){ - if (Dungeon.hero.hasTalent(Talent.INVIGORATING_MEAL)){ + if (Dungeon.hero.hasTalent(Talent.IRON_STOMACH) + || Dungeon.hero.hasTalent(Talent.ENERGIZING_MEAL) + || Dungeon.hero.hasTalent(Talent.MYSTICAL_MEAL) + || Dungeon.hero.hasTalent(Talent.INVIGORATING_MEAL)){ return 0; } else { return 1;