From 34f8a71ad084ec244fbc57dd409ec11b72945f22 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 18 Nov 2018 20:32:55 -0800 Subject: [PATCH] Always writeback pointer data User sort isn't tracked, and reorganizes pointers. Set it back always, no harm as values should always be sensical. Closes #2171 --- PKHeX.Core/Saves/Substructures/Gen7/PokeListHeader.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PKHeX.Core/Saves/Substructures/Gen7/PokeListHeader.cs b/PKHeX.Core/Saves/Substructures/Gen7/PokeListHeader.cs index 5365cad2d..6da6849e0 100644 --- a/PKHeX.Core/Saves/Substructures/Gen7/PokeListHeader.cs +++ b/PKHeX.Core/Saves/Substructures/Gen7/PokeListHeader.cs @@ -142,8 +142,7 @@ public bool CompressStorage() if (FollowerIndex > count && FollowerIndex != SLOT_EMPTY) RemoveFollower(); - if (result) - SetPointerData(PokeListInfo); + SetPointerData(PokeListInfo); return result; } }