mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Update FormConverter.cs
Display 0-9999 for Galarian Yamask formarg values.
This commit is contained in:
parent
771086a222
commit
a437cbb9ca
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue