Fix inaccurate head yaw. Fixes BUKKIT-1702

Dieser Commit ist enthalten in:
Charles Daffern 2012-05-13 03:31:17 +01:00 committet von feildmaster
Ursprung fdddc681d2
Commit 8be14b5bb3

Datei anzeigen

@ -253,6 +253,11 @@ public class EntityTrackerEntry {
}
}
// CraftBukkit start - Fix for nonsensical head yaw
this.i = MathHelper.d(this.tracker.ar() * 256.0F / 360.0F);
this.broadcast(new Packet35EntityHeadRotation(this.tracker.id, (byte) i));
// CraftBukkit end
if (this.tracker instanceof EntityLiving) {
EntityLiving entityliving = (EntityLiving) this.tracker;
Iterator iterator = entityliving.getEffects().iterator();