SPIGOT-3644: Fix missed yaw callsite update

This commit is contained in:
md_5 2017-11-09 13:07:25 +11:00
parent 305df9035f
commit 326c2e605f

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) {