geforkt von Mirrors/Paper
SPIGOT-619: Force rotate head of entities when setting location.
Dieser Commit ist enthalten in:
Ursprung
281376dfb5
Commit
5245147d00
@ -257,8 +257,11 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|||||||
entity.stopRiding();
|
entity.stopRiding();
|
||||||
|
|
||||||
entity.world = ((CraftWorld) location.getWorld()).getHandle();
|
entity.world = ((CraftWorld) location.getWorld()).getHandle();
|
||||||
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
|
|
||||||
// entity.setLocation() throws no event, and so cannot be cancelled
|
// entity.setLocation() throws no event, and so cannot be cancelled
|
||||||
|
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
|
||||||
|
// SPIGOT-619: Force sync head rotation also
|
||||||
|
entity.h(location.getYaw()); // PAIL: setHeadRotation
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren