mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Properly set empty slots to Trainer Card (#3098)
#3086 Was only partially addressed -- it was only done for Title Screen and not League Card too.
This commit is contained in:
parent
c77461808d
commit
228042b111
1 changed files with 2 additions and 0 deletions
|
@ -244,6 +244,8 @@ namespace PKHeX.Core
|
|||
{
|
||||
for (int i = 0; i < party.Count; i++)
|
||||
ViewPoke(i).LoadFrom(party[i]);
|
||||
for (int i = party.Count; i < 6; i++)
|
||||
ViewPoke(i).LoadFrom(new PK8());
|
||||
}
|
||||
|
||||
public ushort Year
|
||||
|
|
Loading…
Add table
Reference in a new issue