From b96526b28499f42bc03aef99672939b89c89819f Mon Sep 17 00:00:00 2001 From: Electroblob <35599699+Electroblob77@users.noreply.github.com> Date: Sat, 7 Apr 2018 22:49:44 +0100 Subject: [PATCH] Fix ice wraith not attacking --- .../electroblob/wizardry/entity/living/EntityIceWraith.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/electroblob/wizardry/entity/living/EntityIceWraith.java b/src/main/java/electroblob/wizardry/entity/living/EntityIceWraith.java index 6a7c0918..e1d9caa1 100644 --- a/src/main/java/electroblob/wizardry/entity/living/EntityIceWraith.java +++ b/src/main/java/electroblob/wizardry/entity/living/EntityIceWraith.java @@ -159,7 +159,7 @@ public class EntityIceWraith extends EntityBlazeMinion { this.moveStrafing *= 0.98F; this.moveForward *= 0.98F; this.randomYawVelocity *= 0.9F; - this.moveRelative(moveStrafing, 0f, moveForward, 0f); + this.travel(this.moveStrafing, this.moveVertical, this.moveForward); this.world.profiler.endSection(); this.world.profiler.startSection("push"); this.collideWithNearbyEntities();