mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-31 08:17:36 -05:00
Remove hard coded box count
This commit is contained in:
parent
d0355253bf
commit
6cba50ba2b
|
|
@ -2791,7 +2791,7 @@ private void switchDaycare(object sender, EventArgs e)
|
|||
private void dumpBoxesToDB(string path, bool individualBoxFolders)
|
||||
{
|
||||
PK6[] boxdata = SAV.BoxData;
|
||||
for (int i = 0; i < 31 * 30; i++)
|
||||
for (int i = 0; i < boxdata.Length; i++)
|
||||
{
|
||||
PK6 pk = boxdata[i];
|
||||
if (pk.Species == 0 || pk.Sanity != 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user