mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
SPIGOT-3565: Head yaw is "more accurate" for living entities
This commit is contained in:
parent
ee91bce157
commit
a3b3a421ac
@ -217,7 +217,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Location getLocation() {
|
public Location getLocation() {
|
||||||
return new Location(getWorld(), entity.locX, entity.locY, entity.locZ, entity.yaw, entity.pitch);
|
return new Location(getWorld(), entity.locX, entity.locY, entity.locZ, entity instanceof EntityLiving ? entity.getHeadRotation() : entity.yaw, entity.pitch);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Location getLocation(Location loc) {
|
public Location getLocation(Location loc) {
|
||||||
@ -226,7 +226,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|||||||
loc.setX(entity.locX);
|
loc.setX(entity.locX);
|
||||||
loc.setY(entity.locY);
|
loc.setY(entity.locY);
|
||||||
loc.setZ(entity.locZ);
|
loc.setZ(entity.locZ);
|
||||||
loc.setYaw(entity.yaw);
|
loc.setYaw(entity instanceof EntityLiving ? entity.getHeadRotation() : entity.yaw);
|
||||||
loc.setPitch(entity.pitch);
|
loc.setPitch(entity.pitch);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user