Preserve pitch and yaw from player

This commit is contained in:
Ruakij 2021-05-11 12:55:01 +02:00
parent 8485e34756
commit c1dbe281a6

View File

@ -104,8 +104,15 @@ public class OnCustomPlayerMove implements CustomPlayerMoveEventListener {
playerBeaconLocation.put(uuid, lbtBlockPartner);
// Teleport
Location loc = safeBlock.getLocation();
// Middle of block
loc.add(0.5, 0, 0.5);
// Preserve pitch and yaw from player
loc.setPitch(p.getLocation().getPitch());
loc.setYaw(p.getLocation().getYaw());
e.player().teleport(
safeBlock.getLocation().add(0.5, 0, 0.5)
loc
);
}
}