From d260249b5ea706a4e5d570d15aa5ec2b7bc8b8b0 Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 28 Jan 2020 18:29:05 -0800 Subject: [PATCH] Apply met location before suggestion check Closes #2667 --- PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index 46ea2e3ba..133f2e058 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -766,6 +766,7 @@ private bool SetSuggestedMetLocation(bool silent = false) if (Entity.Format >= 3) { + Entity.Met_Location = location; TB_MetLevel.Text = encounter.GetSuggestedMetLevel(Entity).ToString(); CB_MetLocation.SelectedValue = location;