From 83388cc6fec045a5d8346eb4e5951da8559ac42c Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 16 Nov 2019 11:44:48 -0800 Subject: [PATCH] Add missing memecrypto clear See the SAV7SM.cs constructor... yeah oops! A hotfix has been posted (committing after I upload!) Closes #2415 thanks @Ammako ! --- PKHeX.Core/Saves/SAV7USUM.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.Core/Saves/SAV7USUM.cs b/PKHeX.Core/Saves/SAV7USUM.cs index 314f2e02a..2d728da6d 100644 --- a/PKHeX.Core/Saves/SAV7USUM.cs +++ b/PKHeX.Core/Saves/SAV7USUM.cs @@ -8,6 +8,7 @@ public SAV7USUM(byte[] data) : base(data, boUU) { Blocks = new SaveBlockAccessor7USUM(this); Initialize(); + ClearMemeCrypto(); } public SAV7USUM() : base(SaveUtil.SIZE_G7USUM, boUU)