From 0aa95c42c0786aef558ccdd8e9e313bcb3b7ac65 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 25 Oct 2020 18:08:36 -0700 Subject: [PATCH] Remove 0x42 from extrabytes all values can be modified via the GUI, no need to expose as raw value. --- PKHeX.Core/PKM/PK5.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PKHeX.Core/PKM/PK5.cs b/PKHeX.Core/PKM/PK5.cs index 5430628a4..559bf7f57 100644 --- a/PKHeX.Core/PKM/PK5.cs +++ b/PKHeX.Core/PKM/PK5.cs @@ -8,13 +8,12 @@ public sealed class PK5 : PKM, IRibbonSetEvent3, IRibbonSetEvent4, IRibbonSetUni { private static readonly ushort[] Unused = { - 0x87, // PokeStar Fame -- this is first to prevent 0x42 from being the first ExtraByte as this byte has GUI functionality - 0x42, // Hidden Ability/NPokemon 0x43, 0x44, 0x45, 0x46, 0x47, 0x5E, // unused 0x63, // last 8 bits of a 32bit ribbonset 0x64, 0x65, 0x66, 0x67, // unused 32bit ribbonset? 0x86, // unused + 0x87, // PokeStar Fame }; public override IReadOnlyList ExtraBytes => Unused;