v1.1.0: all T2 food talents now make berry eating instant

This commit is contained in:
Evan Debenham 2021-12-02 17:53:26 -05:00
parent 26fe4afa11
commit a18ecc9b15

View File

@ -41,7 +41,10 @@ public class Berry extends Food {
@Override @Override
protected float eatingTime(){ 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; return 0;
} else { } else {
return 1; return 1;