From ec9d9c539ec095d5b6a910d012c8f5cb2606f020 Mon Sep 17 00:00:00 2001 From: hp3721 <44118666+hp3721@users.noreply.github.com> Date: Wed, 27 Apr 2022 17:58:31 -0500 Subject: [PATCH] Fix Evolution and Learnset Editor for PLA (#206) --- pkNX.Game/GameManagerPLA.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkNX.Game/GameManagerPLA.cs b/pkNX.Game/GameManagerPLA.cs index f053a2ef..9b5d097c 100644 --- a/pkNX.Game/GameManagerPLA.cs +++ b/pkNX.Game/GameManagerPLA.cs @@ -80,11 +80,6 @@ public void ResetText() protected override void Terminate() { - // Store Personal Data back in the file. Let the container detect if it is modified. - var learn = this[GameFile.Learnsets]; - learn[0] = FlatBufferConverter.SerializeFrom(new Learnset8a { Table = Data.LevelUpData.LoadAll() }); - var evos = this[GameFile.Evolutions]; - evos[0] = FlatBufferConverter.SerializeFrom(new EvolutionTable8 { Table = Data.EvolutionData.LoadAll() }); } } }