mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
Remove invalid pk sizes
export always is in list format for gen1/2, these were introduced in
9b6552d314
which was an incorrect 'fix' for getting files dumped from dumpBoxesToDB
to show up in SAV_Database. This underlying issue has been resolved with
the two previous commits.
This commit is contained in:
parent
b2860ea3de
commit
822fc47dc4
2 changed files with 2 additions and 6 deletions
|
@ -33,13 +33,9 @@ namespace PKHeX
|
|||
{
|
||||
case PKX.SIZE_1JLIST:
|
||||
case PKX.SIZE_1ULIST:
|
||||
case PKX.SIZE_1PARTY:
|
||||
case PKX.SIZE_1STORED:
|
||||
return 1;
|
||||
case PKX.SIZE_2ULIST:
|
||||
case PKX.SIZE_2JLIST:
|
||||
case PKX.SIZE_2PARTY:
|
||||
case PKX.SIZE_2STORED:
|
||||
return 2;
|
||||
case PKX.SIZE_3PARTY:
|
||||
case PKX.SIZE_3STORED:
|
||||
|
|
|
@ -45,8 +45,8 @@ namespace PKHeX
|
|||
{
|
||||
return new[]
|
||||
{
|
||||
SIZE_1JLIST, SIZE_1ULIST, SIZE_1PARTY, SIZE_1STORED,
|
||||
SIZE_2ULIST, SIZE_2JLIST, SIZE_2PARTY, SIZE_2STORED,
|
||||
SIZE_1JLIST, SIZE_1ULIST,
|
||||
SIZE_2ULIST, SIZE_2JLIST,
|
||||
SIZE_3STORED, SIZE_3PARTY,
|
||||
SIZE_4STORED, SIZE_4PARTY,
|
||||
SIZE_5PARTY,
|
||||
|
|
Loading…
Reference in a new issue