From f4aef16ed13ca108250f7e1e72bd2832fa9fc31e Mon Sep 17 00:00:00 2001 From: WayofTime Date: Sun, 22 Apr 2018 16:14:36 -0400 Subject: [PATCH] Fixed the Turret Array. (Deja vu) --- .../alchemyArray/AlchemyArrayEffectArrowTurret.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java index d2782237..ccebac1f 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java @@ -2,6 +2,8 @@ package WayofTime.bloodmagic.alchemyArray; import java.util.List; +import javax.vecmath.Vector2d; + import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.monster.EntityMob; @@ -20,8 +22,6 @@ import net.minecraft.world.World; import net.minecraftforge.items.IItemHandler; import WayofTime.bloodmagic.util.Utils; -import com.sun.javafx.geom.Vec2d; - public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { public EntityLiving target; @@ -92,7 +92,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect if (canFireOnMob(world, pos, target)) { - Vec2d pitchYaw = getPitchYaw(pos, target); + Vector2d pitchYaw = getPitchYaw(pos, target); lastPitch = pitch; lastYaw = yaw; pitch = pitchYaw.x; @@ -180,11 +180,11 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect } } - public static Vec2d getPitchYaw(BlockPos pos, Entity entityIn) + public static Vector2d getPitchYaw(BlockPos pos, Entity entityIn) { if (entityIn == null) { - return new Vec2d(0, 0); + return new Vector2d(0, 0); } double distanceX = entityIn.posX - (pos.getX() + 0.5); @@ -194,7 +194,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect double yaw = Math.atan2(-distanceX, distanceZ) * 180 / Math.PI; double pitch = -Math.atan2(distanceY, radialDistance) * 180 / Math.PI; - return new Vec2d((float) pitch, (float) yaw); + return new Vector2d(pitch, yaw); } public boolean canEntityBeSeen(World world, BlockPos pos, Entity entityIn)