diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index d3a00bc8d..c37dc9c5d 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -3421,7 +3421,10 @@ private void pbBoxSlot_DragDrop(object sender, DragEventArgs e) if (!PKX.verifychk(input)) Util.Alert("Invalid File Loaded.", "Checksum is not valid."); try // to convert past gen pkm { - SAV.setPK6Stored(Converter.ConvertPKMtoPK6(input), offset); + PK6 pk = Converter.ConvertPKMtoPK6(input); + SAV.setPK6Stored(pk, offset); + getQuickFiller(SlotPictureBoxes[slot], pk); + getSlotColor(slot, Properties.Resources.slotSet); } catch { Util.Error("Attempted to load previous generation PKM.", "Conversion failed."); }