1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-19 14:59:27 +00:00

Fix: Don't include player offset when querying player position in the api (#5168)

This commit is contained in:
chris
2024-11-27 22:51:59 +08:00
committed by GitHub
parent 47b68f8140
commit c145c3f495
2 changed files with 5 additions and 5 deletions

View File

@@ -31,9 +31,9 @@ import org.geysermc.geyser.api.entity.type.GeyserEntity;
public interface GeyserPlayerEntity extends GeyserEntity {
/**
* Gets the position of the player.
* Gets the position of the player, as it is known to the Java server.
*
* @return the position of the player.
* @return the player's position
*/
Vector3f position();
}