diff --git a/PKHeX.WinForms/Subforms/ReportGrid.cs b/PKHeX.WinForms/Subforms/ReportGrid.cs index de462cb8b..c437b6eb3 100644 --- a/PKHeX.WinForms/Subforms/ReportGrid.cs +++ b/PKHeX.WinForms/Subforms/ReportGrid.cs @@ -124,7 +124,7 @@ namespace PKHeX.WinForms Stats = pkm.GetStats(pkm.PersonalInfo); } - private static string Get(IReadOnlyList arr, int val) => arr?.Count > val ? arr[val] : null; + private static string Get(IReadOnlyList arr, int val) => arr?.Count > val && val >= 0 ? arr[val] : null; } public ReportGrid() {