diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index d1f100ab2..c598f10ea 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -495,10 +495,10 @@ private static Image GetOriginSprite(PKM pkm) // Specific Markings if (pkm.VC) return Properties.Resources.gen_vc; - if (pkm.GG) - return Properties.Resources.gen_gg; if (pkm.GO) return Properties.Resources.gen_go; + if (pkm.GG) // LGP/E -- GO already returned above. + return Properties.Resources.gen_gg; // Lumped Generations if (pkm.Gen6)