Save met level

closes #1514 , needed to go in savemisc for gen3 pkm

met_location is saved when changing it in the forms, save anyways
This commit is contained in:
Kurt 2017-10-06 08:22:12 -07:00
parent a816f4cea6
commit c25207a6ab

View file

@ -291,6 +291,8 @@ namespace PKHeX.WinForms.Controls
pk.Ball = WinFormsUtil.GetIndex(CB_Ball);
pk.Version = WinFormsUtil.GetIndex(CB_GameOrigin);
pk.Language = WinFormsUtil.GetIndex(CB_Language);
pk.Met_Level = Util.ToInt32(TB_MetLevel.Text);
pk.Met_Location = WinFormsUtil.GetIndex(CB_MetLocation);
}
private void LoadMisc4(PKM pk)