From a18ecc9b15d36b31e2850c0b76605a0fd4726e08 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 2 Dec 2021 17:53:26 -0500 Subject: [PATCH] v1.1.0: all T2 food talents now make berry eating instant --- .../shatteredpixeldungeon/items/food/Berry.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;