mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 15:07:11 +00:00
fix acceptable PKX file extensions being off by one
This commit is contained in:
parent
1589fc733e
commit
a3e144d49c
1 changed files with 1 additions and 1 deletions
|
@ -2449,7 +2449,7 @@ namespace PKHeX.Core
|
|||
const int gens = 7;
|
||||
var result = new List<string>();
|
||||
result.AddRange(new [] {"ck3", "xk3", "bk4"}); // Special Cases
|
||||
for (int i = 1; i < gens; i++)
|
||||
for (int i = 1; i <= gens; i++)
|
||||
result.Add("pk"+i);
|
||||
return result.ToArray();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue