13
0

TeamHalle #6

Zusammengeführt
Lixfel hat 16 Commits von TeamHalle nach master 2022-03-26 16:28:22 +01:00 zusammengeführt
Nur Änderungen aus Commit 6e1b0f70dd werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -166,18 +166,21 @@ public class NPC {
}
this.location = location;
byte yaw = (byte)(int)(location.getYaw() * 256.0 / 360.0);
byte pitch = (byte)(int)(location.getPitch() * 256.0 / 360.0);
headRotationYaw.set(headRotation, yaw);
move = movePacketConstructor.invoke();
movePacketEntity.set(move, entityId);
movePacketX.set(move, location.getX());
movePacketY.set(move, location.getY());
movePacketZ.set(move, location.getZ());
movePacketYaw.set(move, yaw);
movePacketPitch.set(move, pitch);
movePacketOnGround.set(move, true);
namedSpawnX.set(namedSpawn, location.getX());
namedSpawnY.set(namedSpawn, location.getY());
namedSpawnZ.set(namedSpawn, location.getZ());
movePacketYaw.set(move, yaw);
movePacketPitch.set(move, (byte)(int)(location.getPitch() * 256.0 / 360.0));
movePacketOnGround.set(move, true);
namedSpawnYaw.set(namedSpawn, yaw);
namedSpawnPitch.set(namedSpawn, pitch);
display.setLocation(location);
}