diff --git a/PKHeX.Core/Saves/Substructures/Gen8/TitleScreen8.cs b/PKHeX.Core/Saves/Substructures/Gen8/TitleScreen8.cs index a54018094..48ea25a39 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/TitleScreen8.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/TitleScreen8.cs @@ -29,6 +29,8 @@ public void LoadTeamData(IList party) { 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()); } }