99th_DutchVoid
Dedicated Member
Current situation
Currently, the percentage indicating your progress in a Skyblock quest is rounded up, causing a counterintuitive progessbar:
Figure 1: Showing 56% completion while being at 55%.
Now, this is still not that big of an issue, who really cares about the percentage somewhere halfway right? People like me, who would like to see this fixed properly. But it becomes more troublesome while approaching 100%:
Figure 2: Showing 100% completion while being at 99.008%
Do you see the issue here? It basically shows you're done with your quest, but you're not there yet.
According to CubeCrafts QA, this is intended behavior and not a bug. That's why I am once again asking for your support in this suggestion.
Desired situation
The solution is really simple: round down instead of up (replace
~99th_DutchVoid
Currently, the percentage indicating your progress in a Skyblock quest is rounded up, causing a counterintuitive progessbar:
Figure 1: Showing 56% completion while being at 55%.
Now, this is still not that big of an issue, who really cares about the percentage somewhere halfway right? People like me, who would like to see this fixed properly. But it becomes more troublesome while approaching 100%:
Figure 2: Showing 100% completion while being at 99.008%
Do you see the issue here? It basically shows you're done with your quest, but you're not there yet.
According to CubeCrafts QA, this is intended behavior and not a bug. That's why I am once again asking for your support in this suggestion.
Desired situation
The solution is really simple: round down instead of up (replace
Math.ceil
by Math.floor
, or whatever comparable method is used for this). Easy implementation, and then you're really only at 100% when you actually are at 100%.~99th_DutchVoid