mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 22:29:52 -05:00
parent
a9892203c7
commit
ec491cdd52
|
|
@ -300,7 +300,7 @@ public override int PlayedSeconds
|
|||
public int Badges
|
||||
{
|
||||
get => BitConverter.ToUInt16(Data, Offsets.JohtoBadges);
|
||||
set { if (value < 0) return; BitConverter.GetBytes(value).CopyTo(Data, Offsets.JohtoBadges); }
|
||||
set { if (value < 0) return; BitConverter.GetBytes((ushort)value).CopyTo(Data, Offsets.JohtoBadges); }
|
||||
}
|
||||
private byte Options
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user