3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

SPIGOT-3644: Fix missed yaw callsite update

Dieser Commit ist enthalten in:
md_5 2017-11-09 13:07:25 +11:00
Ursprung 305df9035f
Commit 326c2e605f

Datei anzeigen

@ -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 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) { public Location getLocation(Location loc) {