diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java index 4c601f2ad..22b431a15 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java @@ -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);