mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
parent
907f036956
commit
c81edac9e5
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ namespace PKHeX.Core
|
|||
private bool CGearSkinPresent
|
||||
{
|
||||
get => Data[CGearSkinInfoOffset + 2] == 1;
|
||||
set => Data[CGearSkinInfoOffset + 2] = Data[Trainer1 + (this is SAV5B2W2 ? 0x6C : 0x54)] = (byte) (value ? 1 : 0);
|
||||
set => Data[CGearSkinInfoOffset + 2] = Data[PlayerData.Offset + (this is SAV5B2W2 ? 0x6C : 0x54)] = (byte) (value ? 1 : 0);
|
||||
}
|
||||
|
||||
public byte[] CGearSkinData
|
||||
|
|
Loading…
Reference in a new issue