SPIGOT-3644: Fix missed yaw callsite update

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2017-11-09 13:07:25 +11:00
parent 4a0e197bb8
commit d87e31cf51

View file

@ -217,7 +217,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
}
public Location getLocation() {
return new Location(getWorld(), entity.locX, entity.locY, entity.locZ, entity instanceof EntityLiving ? entity.getHeadRotation() : entity.yaw, entity.pitch);
return new Location(getWorld(), entity.locX, entity.locY, entity.locZ, entity.getBukkitYaw(), entity.pitch);
}
public Location getLocation(Location loc) {