Clamp max bp for bad vals

https://projectpokemon.org/home/forums/topic/55524-pkhex-191115e/
This commit is contained in:
Kurt 2019-11-20 23:05:33 -08:00
parent 93028b3439
commit 422b11bb42

View file

@ -28,7 +28,7 @@ namespace PKHeX.WinForms
TrainerStats.LoadRecords(SAV, Records.RecordList_8);
NUD_BP.Value = SAV.Misc.BP;
NUD_BP.Value = Math.Min(SAV.Misc.BP, 9999);
GetComboBoxes();
GetTextBoxes();