From cf7ca51d83dd19fbb374cb637fc4634fb043043d Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Sat, 2 Apr 2016 14:03:04 -0700 Subject: [PATCH] Let the program handle genderless pkm on load Previously a Male Arceus would load (gender 0 = male), just have the program handle the gender/species. --- PKX/f1-Main.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index 113ef8871..6bd09e14e 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -958,13 +958,13 @@ private void InitializeFields() { // Now that the ComboBoxes are ready, load the data. fieldsInitialized = true; - pk6.Species = 493; - pk6.Move1 = 1; pk6.RefreshChecksum(); // Load Data populateFields(pk6); { + CB_Species.SelectedValue = 493; + CB_Move1.SelectedValue = 1; TB_OT.Text = "PKHeX"; TB_TID.Text = 12345.ToString(); TB_SID.Text = 54321.ToString();