mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-19 23:08:34 +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);
|
TrainerStats.LoadRecords(SAV, Records.RecordList_8);
|
||||||
|
|
||||||
NUD_BP.Value = SAV.Misc.BP;
|
NUD_BP.Value = Math.Min(SAV.Misc.BP, 9999);
|
||||||
GetComboBoxes();
|
GetComboBoxes();
|
||||||
GetTextBoxes();
|
GetTextBoxes();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue