Update FormConverter.cs

Display 0-9999 for Galarian Yamask formarg values.
This commit is contained in:
sora10pls 2020-11-26 18:41:45 -05:00
parent 771086a222
commit a437cbb9ca

View file

@ -1042,7 +1042,7 @@ namespace PKHeX.Core
private static readonly Lazy<string[]> FormArg9999 = new Lazy<string[]>(() =>
{
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;