mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-12 02:15:22 -05:00
Update FormConverter.cs
Display 0-9999 for Galarian Yamask formarg values.
This commit is contained in:
@@ -1042,7 +1042,7 @@ public static string[] GetFormArgumentStrings(int species, int form, int generat
|
||||
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user