From 30cdbb75b64a2387734eec897cb9a7d7ace70fcb Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Fri, 13 Oct 2017 21:36:32 +1100 Subject: [PATCH] SPIGOT-3607: Bad yaw from armorstands treated as living By: md_5 --- paper-server/nms-patches/EntityArmorStand.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/paper-server/nms-patches/EntityArmorStand.patch b/paper-server/nms-patches/EntityArmorStand.patch index b89cca72a..60bfdee03 100644 --- a/paper-server/nms-patches/EntityArmorStand.patch +++ b/paper-server/nms-patches/EntityArmorStand.patch @@ -122,3 +122,15 @@ this.die(); } +@@ -733,4 +763,11 @@ + public boolean cS() { + return false; + } ++ ++ // CraftBukkit start - SPIGOT-3607 ++ @Override ++ public float getHeadRotation() { ++ return this.yaw; ++ } ++ // CraftBukkit end + }