mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
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.
This commit is contained in:
parent
b0ccfe6a09
commit
cf7ca51d83
1 changed files with 2 additions and 2 deletions
|
@ -958,13 +958,13 @@ namespace PKHeX
|
|||
{
|
||||
// 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();
|
||||
|
|
Loading…
Reference in a new issue