mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Don't dump empty slots
This commit is contained in:
parent
0df9e35397
commit
71d029fbb4
1 changed files with 2 additions and 0 deletions
|
@ -2862,6 +2862,8 @@ namespace PKHeX
|
|||
for (int i = 0; i < 31 * 30; i++)
|
||||
{
|
||||
PK6 pk = SAV.getPK6Stored(SAV.Box + i * PK6.SIZE_STORED);
|
||||
if (pk.Species == 0 || pk.Sanity != 0)
|
||||
continue;
|
||||
string fileName = Util.CleanFileName(pk.FileName);
|
||||
string boxfolder = "";
|
||||
if (individualBoxFolders)
|
||||
|
|
Loading…
Reference in a new issue