1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-03 21:37:28 +01:00

Fix yaw on player spawn ()

This commit is contained in:
Jake Potrebic 2021-08-16 14:46:25 -07:00
parent f9143cf9ec
commit 5da877975c

View file

@ -55,7 +55,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ if (event.getLocation() != null) {
+ dimension = event.getLocation().getWorld() != null ? ((CraftWorld) event.getLocation().getWorld()).getHandle().dimension() : dimension;
+ pos = net.minecraft.server.MCUtil.toBlockPosition(event.getLocation());
+ angle = (float) event.getLocation().getY();
+ angle = (float) event.getLocation().getYaw();
+ spawnPointSet = event.isForced();
+ // Paper end