mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Clamp max bp for bad vals
https://projectpokemon.org/home/forums/topic/55524-pkhex-191115e/
This commit is contained in:
parent
93028b3439
commit
422b11bb42
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue