v3.0.0: fixed enlightening meal not reducing horn of plenty eat duration

This commit is contained in:
Evan Debenham
2024-12-02 12:02:10 -05:00
parent 1c4e55216c
commit 52d59cca42
@@ -131,7 +131,8 @@ public class HornOfPlenty extends Artifact {
|| Dungeon.hero.hasTalent(Talent.ENERGIZING_MEAL)
|| Dungeon.hero.hasTalent(Talent.MYSTICAL_MEAL)
|| Dungeon.hero.hasTalent(Talent.INVIGORATING_MEAL)
|| Dungeon.hero.hasTalent(Talent.FOCUSED_MEAL)){
|| Dungeon.hero.hasTalent(Talent.FOCUSED_MEAL)
|| Dungeon.hero.hasTalent(Talent.ENLIGHTENING_MEAL)){
hero.spend(Food.TIME_TO_EAT - 2);
} else {
hero.spend(Food.TIME_TO_EAT);