From d9982bcd47e4fdc267bfcbc10bd2be9fa66df910 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 17 Dec 2022 14:42:41 -0800 Subject: [PATCH] Reset Version to 0 if SV IsEgg --- PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index ff1cc2985..814acd731 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -1439,6 +1439,9 @@ private void UpdateIsEgg(object sender, EventArgs e) // Wipe egg memories if (Entity.Format >= 6 && ModifyPKM) Entity.ClearMemories(); + + if (Entity is PK9) + CB_GameOrigin.SelectedValue = 0; } else // Not Egg {