mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-10 22:15:17 -05:00
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user