mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 20:28:24 -05:00
parent
d9c162b5cf
commit
9cce65e937
|
|
@ -65,8 +65,8 @@ public int MultiFriendsRecord
|
|||
// Super Check
|
||||
public int SuperCheck
|
||||
{
|
||||
get => BitConverter.ToUInt16(Data, Offset + 0x04);
|
||||
set => BitConverter.GetBytes((ushort)value).CopyTo(Data, Offset + 0x04);
|
||||
get => Data[Offset + 0x04];
|
||||
set => Data[Offset + 0x04] = (byte)value;
|
||||
}
|
||||
|
||||
// Super
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user