Compare commits

...

1 Commits

Author SHA1 Message Date
Ruakij
c1dbe281a6 Preserve pitch and yaw from player 2021-05-11 12:55:01 +02:00

View File

@@ -104,8 +104,15 @@ public class OnCustomPlayerMove implements CustomPlayerMoveEventListener {
playerBeaconLocation.put(uuid, lbtBlockPartner); playerBeaconLocation.put(uuid, lbtBlockPartner);
// Teleport // 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( e.player().teleport(
safeBlock.getLocation().add(0.5, 0, 0.5) loc
); );
} }
} }