mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Show alolan height/weight records
This commit is contained in:
parent
eab75b7cba
commit
a7cc51f633
1 changed files with 4 additions and 2 deletions
|
@ -231,7 +231,8 @@ namespace PKHeX.WinForms
|
|||
CL[i].Checked = CL[i].Enabled && Dex.GetLanguageFlag(pk, i);
|
||||
}
|
||||
|
||||
LoadRecord(currentSpecies, Math.Max(0, LB_Forms.SelectedIndex));
|
||||
int speciesID = Dex.GetBaseSpecies(currentSpecies);
|
||||
LoadRecord(speciesID, Math.Max(0, LB_Forms.SelectedIndex));
|
||||
|
||||
editing = false;
|
||||
}
|
||||
|
@ -257,7 +258,8 @@ namespace PKHeX.WinForms
|
|||
for (int i = 0; i < 9; i++)
|
||||
Dex.SetLanguageFlag(pk, i, CL[i].Checked);
|
||||
|
||||
SetRecord(currentSpecies, Math.Max(0, LB_Forms.SelectedIndex));
|
||||
int speciesID = Dex.GetBaseSpecies(currentSpecies);
|
||||
SetRecord(speciesID, Math.Max(0, LB_Forms.SelectedIndex));
|
||||
}
|
||||
|
||||
private void LoadRecord(int species, int form)
|
||||
|
|
Loading…
Reference in a new issue