From 37f9ea2ab23393a8ecb5880cdec9e48391789e01 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Sun, 22 Apr 2018 16:04:08 -0400 Subject: [PATCH] Fixed server-sided crash for the turret array (why is Vec2f not found on the server???) --- changelog.txt | 6 ++++++ .../alchemyArray/AlchemyArrayEffectArrowTurret.java | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index a812faeb..f34df715 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +------------------------------------------------------ +Version 2.2.10 +------------------------------------------------------ +- Fixed Turret Array crash on servers. + + ------------------------------------------------------ Version 2.2.9 ------------------------------------------------------ diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java index 25d838cb..d2782237 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java @@ -15,12 +15,13 @@ import net.minecraft.util.EnumFacing; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; -import net.minecraft.util.math.Vec2f; import net.minecraft.util.math.Vec3d; 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; @@ -91,7 +92,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect if (canFireOnMob(world, pos, target)) { - Vec2f pitchYaw = getPitchYaw(pos, target); + Vec2d pitchYaw = getPitchYaw(pos, target); lastPitch = pitch; lastYaw = yaw; pitch = pitchYaw.x; @@ -179,11 +180,11 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect } } - public static Vec2f getPitchYaw(BlockPos pos, Entity entityIn) + public static Vec2d getPitchYaw(BlockPos pos, Entity entityIn) { if (entityIn == null) { - return new Vec2f(0, 0); + return new Vec2d(0, 0); } double distanceX = entityIn.posX - (pos.getX() + 0.5); @@ -193,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 Vec2f((float) pitch, (float) yaw); + return new Vec2d((float) pitch, (float) yaw); } public boolean canEntityBeSeen(World world, BlockPos pos, Entity entityIn)