v1.4.1: fixed shielding and aqua rejuv not proccing talents with pharma

This commit is contained in:
Evan Debenham
2022-10-05 12:54:31 -04:00
parent 6e1695d911
commit 08a77134fc
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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 );
}
}