v0.9.1: honeyed healing now triggers on-eat and satiates more

This commit is contained in:
Evan Debenham 2020-12-10 14:26:38 -05:00
parent 0ffd5f73a7
commit 533447d2b2

View File

@ -46,7 +46,8 @@ public class ElixirOfHoneyedHealing extends Elixir {
PotionOfHealing.cure(hero);
PotionOfHealing.heal(hero);
Talent.onHealingPotionUsed( hero );
Buff.affect(hero, Hunger.class).satisfy(Hunger.STARVING/5f);
Buff.affect(hero, Hunger.class).satisfy(Hunger.HUNGRY/2f);
Talent.onFoodEaten(hero, Hunger.HUNGRY/2f, this);
}
@Override