-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to sort by IV or anything other than the default value on OS X 10.11 #190
Comments
Until there's a chance for an update, sorting inside a species works so long as you sort the master list by (see also #101 (comment)) |
I can go through the diff and see if I can find what caused this bug. Also you can't sort by sprite, but you can sort by Pokedex #, I assume this is what you are referring to. It is weird that it would work on one OS but not the other, that is extremely odd to me. Perhaps it is just that it works under certain circumstances and not others. |
I am not sure what change broke this, but I can now tell that it is caused by sorting the monsters.species array. We are likely using that array to keep sort order for all the species, which we are using elsewhere to access for species data. Instead of being able to quickly find a species information we would need to iterate over every single pokemon which is much slower :/ Separating sort order + the data would be nice here. So basically by sorting the table the wrong pokemon are placed in a position, for example if I sort by name instead of Zubat being in index 40, Kartana is. So the sorting still occurs, but on the completely incorrect 'mon. |
Confirmed working in develop. Awesome! |
Steps :
3)Try and sort by IV or anything other than the default value and it fails on Mac OS 10.11 but works fine on macOS 10.12.
The text was updated successfully, but these errors were encountered: