From 08a77134fc68fedd39c402eb0da050a4b94c3b69 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 5 Oct 2022 12:54:31 -0400 Subject: [PATCH] v1.4.1: fixed shielding and aqua rejuv not proccing talents with pharma --- .../items/potions/elixirs/ElixirOfAquaticRejuvenation.java | 2 +- .../items/potions/exotic/PotionOfShielding.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfAquaticRejuvenation.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfAquaticRejuvenation.java index 340d85966..f082034f5 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfAquaticRejuvenation.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfAquaticRejuvenation.java @@ -49,8 +49,8 @@ public class ElixirOfAquaticRejuvenation extends Elixir { PotionOfHealing.pharmacophobiaProc(hero); } else { Buff.affect(hero, AquaHealing.class).set(Math.round(hero.HT * 1.5f)); - Talent.onHealingPotionUsed( hero ); } + Talent.onHealingPotionUsed( hero ); } @Override diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShielding.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShielding.java index 90fc5d2fa..19b56cb1c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShielding.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShielding.java @@ -45,7 +45,7 @@ public class PotionOfShielding extends ExoticPotion { } else { //~75% of a potion of healing Buff.affect(hero, Barrier.class).setShield((int) (0.6f * hero.HT + 10)); - Talent.onHealingPotionUsed( hero ); } + Talent.onHealingPotionUsed( hero ); } }