Remove knockback from celestial smite

This commit is contained in:
Electroblob77
2020-10-21 21:20:18 +01:00
parent 38aa80d60a
commit d85441867e
@@ -40,7 +40,7 @@ public class CelestialSmite extends SpellRay {
float damage = getProperty(DAMAGE).floatValue() * modifiers.get(SpellModifiers.POTENCY);
for(EntityLivingBase target : targets){
target.attackEntityFrom(source, damage);
EntityUtils.attackEntityWithoutKnockback(target, source, damage);
target.setFire(getProperty(BURN_DURATION).intValue());
}