mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-12 18:05:18 -05:00
Fix party accessing
Return current party member counts, no blanks
This commit is contained in:
@@ -661,7 +661,7 @@ public PK6[] PartyData
|
||||
{
|
||||
get
|
||||
{
|
||||
PK6[] data = new PK6[6];
|
||||
PK6[] data = new PK6[PartyCount];
|
||||
for (int i = 0; i < data.Length; i++)
|
||||
data[i] = getPK6Party(Party + PK6.SIZE_PARTY * i);
|
||||
return data;
|
||||
|
||||
Reference in New Issue
Block a user