You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
There is a problem in this calculation (within module MixedUnicodeToken.java). The results do not match the description, as they currently show the IV values of the lowest IV combination, instead of the individual lowest atk/def/hp IVs.
When a stat, like HP has for all combinations a value of 15, that number is shown as black 15, which is fine. The defense has different numbers, so it should be white and show the lowest number, for example 6. However, while I noticed my attack has a range of 11-15, it should be white 11, not white 15 as currently assigned.
I created this issue so I can link it when presenting the solution through a PR.
The return string currently returns the IV values of the lowest IV combination, instead of the individual lowest atk/def/hp IVs (MixedUnicodeToken.java:102-105)
Just to be clear, there are many discussions about adding other Tokens which might show not lowest but highest value for each stat, or even show the lowest IV combination based on the range. All of this is possible, but this fix is about bringing this module in sync with the description of the Token in GoIV: show the lowest possible value for each stat. Currently it does not, so it's a bug.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There is a problem in this calculation (within module MixedUnicodeToken.java). The results do not match the description, as they currently show the IV values of the lowest IV combination, instead of the individual lowest atk/def/hp IVs.
When a stat, like HP has for all combinations a value of 15, that number is shown as black 15, which is fine. The defense has different numbers, so it should be white and show the lowest number, for example 6. However, while I noticed my attack has a range of 11-15, it should be white 11, not white 15 as currently assigned.
I created this issue so I can link it when presenting the solution through a PR.
The return string currently returns the IV values of the lowest IV combination, instead of the individual lowest atk/def/hp IVs (MixedUnicodeToken.java:102-105)
The code:
should become:
The text was updated successfully, but these errors were encountered: