We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58e597d commit c2eed02Copy full SHA for c2eed02
1 file changed
authme-core/src/main/java/fr/xephi/authme/data/auth/PlayerAuth.java
@@ -75,10 +75,12 @@ public int getGroupId() {
75
}
76
77
public void setQuitLocation(Location location) {
78
- x = location.getBlockX();
79
- y = location.getBlockY();
80
- z = location.getBlockZ();
+ x = location.getX();
+ y = location.getY();
+ z = location.getZ();
81
world = location.getWorld().getName();
82
+ yaw = location.getYaw();
83
+ pitch = location.getPitch();
84
85
86
public double getQuitLocX() {
0 commit comments