From 5b0e431347b1b7985b59046e47cb4a3294788856 Mon Sep 17 00:00:00 2001 From: Kurt <kaphotics@gmail.com> Date: Sat, 26 Aug 2017 08:41:18 -0700 Subject: [PATCH] Revert "Uncap max box ID for gen6 not-XY saves" This reverts commit 9869335151d5603484a2c1f74f514427a3288675. --- PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs index 4d2cd55f4..8a6f76488 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs @@ -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);