From c6796a09f0b746e1de27d5eceecd2b5aa2b18ad4 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Fri, 26 Feb 2016 20:33:18 -0800 Subject: [PATCH] Fix Location bugginess with Legal checking Thanks Odaxis. --- PKX/f1-Main.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index 51f973353..236fd7df0 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -1854,6 +1854,9 @@ private void updateOriginGame(object sender, EventArgs e) CB_EncounterType.SelectedValue = 0; setMarkings(); // Set/Remove KB marking + if (!fieldsLoaded) + return; + pk6.Version = Version; pk6.Met_Location = Util.getIndex(CB_MetLocation); pk6.Egg_Location = Util.getIndex(CB_EggLocation); updateValidMoves();