diff --git a/api/src/main/java/com/github/retrooper/packetevents/protocol/world/positionsource/builtin/EntityPositionSource.java b/api/src/main/java/com/github/retrooper/packetevents/protocol/world/positionsource/builtin/EntityPositionSource.java index 9d65dcc88..4ccd02a2b 100644 --- a/api/src/main/java/com/github/retrooper/packetevents/protocol/world/positionsource/builtin/EntityPositionSource.java +++ b/api/src/main/java/com/github/retrooper/packetevents/protocol/world/positionsource/builtin/EntityPositionSource.java @@ -96,28 +96,28 @@ public static void encodeSource(EntityPositionSource source, ClientVersion versi } /** - * Note: Only used when handling particles through registries and version is >= 1.19. + * Note: Only used when handling particles through registries and version is at least 1.19. */ public Optional getEntityUniqueId() { return this.entityUniqueId; } /** - * Note: Only used when handling particles through registries and version is >= 1.19. + * Note: Only used when handling particles through registries and version is at least 1.19. */ public void setEntityUniqueId(Optional entityUniqueId) { this.entityUniqueId = entityUniqueId; } /** - * Note: Only used when handling particles through particle packets or version is < 1.19. + * Note: Only used when handling particles through particle packets or version is older than 1.19. */ public int getEntityId() { return this.entityId; } /** - * Note: Only used when handling particles through particle packets or version is < 1.19. + * Note: Only used when handling particles through particle packets or version is older than 1.19. */ public void setEntityId(int entityId) { this.entityId = entityId;