Better hit ritual

This commit is contained in:
Edith Boles 2021-10-04 18:28:50 -07:00
parent 923b72175d
commit f30c9a1df8

View File

@ -25,6 +25,7 @@ public class HitRitual extends Ritual {
public void execute(Player caster, Player target, Location location) { public void execute(Player caster, Player target, Location location) {
target.playSound(target.getLocation(), Sound.HURT_FLESH, 1, 1); target.playSound(target.getLocation(), Sound.HURT_FLESH, 1, 1);
target.damage(1); target.damage(1);
target.setVelocity(target.getVelocity().add(target.getLocation().getDirection().multiply(1)));
Bukkit.getServer().getScheduler().scheduleSyncDelayedTask(QuidProQuo.instance, new Runnable() { Bukkit.getServer().getScheduler().scheduleSyncDelayedTask(QuidProQuo.instance, new Runnable() {
public void run() { public void run() {
target.playSound(target.getLocation(), Sound.HURT_FLESH, 0.8f, 1.1f); target.playSound(target.getLocation(), Sound.HURT_FLESH, 0.8f, 1.1f);