diff --git a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs index 9d00a75b9..8c97d13a3 100644 --- a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs +++ b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs @@ -225,6 +225,8 @@ namespace PKHeX.WinForms.Controls return false; string file = files[0]; FileInfo fi = new FileInfo(file); + if (!fi.Exists) + return false; if (!PKX.IsPKM(fi.Length) && !MysteryGift.IsMysteryGift(fi.Length)) { RequestExternalDragDrop?.Invoke(this, e); // pass thru