mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
Revert "Uncap max box ID for gen6 not-XY saves"
This reverts commit 9869335151
.
This commit is contained in:
parent
b9a9b6db32
commit
5b0e431347
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ namespace PKHeX.WinForms
|
|||
}
|
||||
CB_Unlocked.Items.Clear();
|
||||
int max = SAV.BoxCount;
|
||||
if (SAV.Generation == 6 && SAV.XY)
|
||||
if (SAV.Generation == 6)
|
||||
max -= 1; // cover legendary captured unlocks final box, not governed by BoxesUnlocked
|
||||
for (int i = 0; i <= max; i++)
|
||||
CB_Unlocked.Items.Add(i);
|
||||
|
|
Loading…
Reference in a new issue