From a437cbb9ca8a1059074ef569789f0a2b4d568409 Mon Sep 17 00:00:00 2001 From: sora10pls <17801814+sora10pls@users.noreply.github.com> Date: Thu, 26 Nov 2020 18:41:45 -0500 Subject: [PATCH] Update FormConverter.cs Display 0-9999 for Galarian Yamask formarg values. --- PKHeX.Core/PKM/Util/FormConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;