HypixelDev / PublicAPI

Official Java implementation of the Hypixel Public API.
https://api.hypixel.net
MIT License
535 stars 151 forks source link

Refined Jyrre count is incorrect #639

Closed MattTheCuber closed 1 month ago

MattTheCuber commented 2 months ago

Issue

profileData.leveling.REFINED_JYRRE is incorrect. It display as 4 if the player actually has actually drank 5.

Proof

image

image

MattTheCuber commented 2 months ago

@AzureAaron mentioned that it could be zero-based (not present if 0). I confirmed this could be true by checking a profile with 0 drank:

image

If this is the case, it would be great to simply know this.

ConnorLinfoot commented 1 month ago

The data under leveling appears to be incorrect due to it using another field for the underlying task implementation, we've added the field that the task uses to the API as winter_player_data.refined_jyrre_uses which should be correct.

Once possible, the old field will be removed accordingly, but this requires changes to the game first.

MattTheCuber commented 1 month ago

Amazing! Thank you very much!