diff --git a/PKHeX.WinForms/Controls/SAV Editor/SAVEditor.cs b/PKHeX.WinForms/Controls/SAV Editor/SAVEditor.cs index 27215ef8c..d3ada5316 100644 --- a/PKHeX.WinForms/Controls/SAV Editor/SAVEditor.cs +++ b/PKHeX.WinForms/Controls/SAV Editor/SAVEditor.cs @@ -270,7 +270,7 @@ public void ClickUndo() return; SlotChange change = UndoStack.Pop(); - if (change.Slot >= (int)SlotIndex.Party) + if (change.Box < 0) return; RedoStack.Push(new SlotChange @@ -289,7 +289,7 @@ public void ClickRedo() return; SlotChange change = RedoStack.Pop(); - if (change.Slot >= (int)SlotIndex.Party) + if (change.Box < 0) return; UndoStack.Push(new SlotChange