Add box sorting by gender

Closes #1185
This commit is contained in:
Kurt 2017-06-02 08:54:08 -07:00
parent f70bd02d69
commit 6fee7052af

View file

@ -532,6 +532,7 @@ namespace PKHeX.Core
.ThenBy(p => p.IsEgg) // eggs to the end
.ThenBy(p => p.Species) // species sorted
.ThenBy(p => p.AltForm) // altforms sorted
.ThenBy(p => p.Gender) // gender sorted
.ThenBy(p => p.IsNicknamed).ToArray();
Array.Copy(Sorted, 0, BD, BoxStart*BoxSlotCount, Sorted.Length);