diff --git a/PKHeX.Core/Saves/SAV2.cs b/PKHeX.Core/Saves/SAV2.cs index 1c7db35c3..0548281ce 100644 --- a/PKHeX.Core/Saves/SAV2.cs +++ b/PKHeX.Core/Saves/SAV2.cs @@ -590,6 +590,11 @@ private ushort GetResetKey() var tr = ot.Sum(z => z); return (ushort)(val + tr); } + public void UnlockAllDecorations() + { + for (int i = 676; i <= 721; i++) + SetEventFlag(i, true); + } public override string GetString(int Offset, int Count) {