diff --git a/PKHeX/Saves/SaveFile.cs b/PKHeX/Saves/SaveFile.cs index c1c6a25a6..6d25818f2 100644 --- a/PKHeX/Saves/SaveFile.cs +++ b/PKHeX/Saves/SaveFile.cs @@ -148,6 +148,7 @@ public PKM[] BoxData data[i].Identifier = $"{getBoxName(i/BoxSlotCount)}:{i%BoxSlotCount + 1:00}"; data[i].Box = i/BoxSlotCount + 1; data[i].Slot = i%BoxSlotCount + 1; + data[i].Locked = getIsSlotLocked(data[i].Box, data[i].Slot); } return data; } diff --git a/PKHeX/Subforms/PKM Editors/BatchEditor.cs b/PKHeX/Subforms/PKM Editors/BatchEditor.cs index a7a1db6d6..d198b0973 100644 --- a/PKHeX/Subforms/PKM Editors/BatchEditor.cs +++ b/PKHeX/Subforms/PKM Editors/BatchEditor.cs @@ -190,7 +190,7 @@ private void processSAV(PKM[] data, List Filters, List