Add amulet of vitality

This commit is contained in:
Electroblob77
2020-06-02 23:41:16 +01:00
parent 930ad77db5
commit b4fc50ad71
9 changed files with 39 additions and 3 deletions
@@ -35,7 +35,7 @@ public class GroupHeal extends Spell {
if(target.getHealth() < target.getMaxHealth() && target.getHealth() > 0){
target.heal(getProperty(HEALTH).floatValue() * modifiers.get(SpellModifiers.POTENCY));
Heal.heal(target, getProperty(HEALTH).floatValue() * modifiers.get(SpellModifiers.POTENCY));
if(world.isRemote) ParticleBuilder.spawnHealParticles(world, target);
playSound(world, target, ticksInUse, -1, modifiers);