diff --git a/PKHeX.Core/PKM/Util/FormConverter.cs b/PKHeX.Core/PKM/Util/FormConverter.cs index 92c986709..527c56403 100644 --- a/PKHeX.Core/PKM/Util/FormConverter.cs +++ b/PKHeX.Core/PKM/Util/FormConverter.cs @@ -1042,7 +1042,7 @@ namespace PKHeX.Core private static readonly Lazy FormArg9999 = new Lazy(() => { - var result = new string[9_999]; + var result = new string[10_000]; for (int i = 0; i < result.Length; i++) result[i] = i.ToString(); return result;