Remove 0x42 from extrabytes

all values can be modified via the GUI, no need to expose as raw value.
This commit is contained in:
Kurt 2020-10-25 18:08:36 -07:00
parent bb60b140e2
commit 0aa95c42c0

View File

@ -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<ushort> ExtraBytes => Unused;