From d8a9c7be4227b2243968b63ab7cc7a00098c93ad Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Thu, 26 Feb 2015 22:41:06 +0000 Subject: Update to Minecraft 1.8.3 --- nms-patches/ControllerLook.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 nms-patches/ControllerLook.patch (limited to 'nms-patches/ControllerLook.patch') diff --git a/nms-patches/ControllerLook.patch b/nms-patches/ControllerLook.patch deleted file mode 100644 index cc6a3806..00000000 --- a/nms-patches/ControllerLook.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- ../work/decompile-8eb82bde//net/minecraft/server/ControllerLook.java 2014-11-28 17:43:43.025707437 +0000 -+++ src/main/java/net/minecraft/server/ControllerLook.java 2014-11-28 17:38:21.000000000 +0000 -@@ -1,5 +1,7 @@ - package net.minecraft.server; - -+import org.bukkit.craftbukkit.TrigMath; // CraftBukkit -+ - public class ControllerLook { - - private EntityInsentient a; -@@ -45,8 +47,10 @@ - double d1 = this.f - (this.a.locY + (double) this.a.getHeadHeight()); - double d2 = this.g - this.a.locZ; - double d3 = (double) MathHelper.sqrt(d0 * d0 + d2 * d2); -- float f = (float) (Math.atan2(d2, d0) * 180.0D / 3.1415927410125732D) - 90.0F; -- float f1 = (float) (-(Math.atan2(d1, d3) * 180.0D / 3.1415927410125732D)); -+ // CraftBukkit start - Math -> TrigMath -+ float f = (float) (TrigMath.atan2(d2, d0) * 180.0D / 3.1415927410125732D) - 90.0F; -+ float f1 = (float) (-(TrigMath.atan2(d1, d3) * 180.0D / 3.1415927410125732D)); -+ // CraftBukkit end - - this.a.pitch = this.a(this.a.pitch, f1, this.c); - this.a.aI = this.a(this.a.aI, f, this.b); -- cgit v1.2.3