mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Change safari seed to uint
matches community handling of seeds
This commit is contained in:
parent
5d4a8e5328
commit
2560d0eb28
1 changed files with 4 additions and 4 deletions
|
@ -36,15 +36,15 @@ namespace PKHeX.Core
|
|||
set => BitConverter.GetBytes(value).CopyTo(Data, Offset + 0x00);
|
||||
}
|
||||
|
||||
public int SafariRandSeed
|
||||
public uint SafariRandSeed
|
||||
{
|
||||
get => BitConverter.ToInt32(Data, Offset + 0x04);
|
||||
get => BitConverter.ToUInt32(Data, Offset + 0x04);
|
||||
set => BitConverter.GetBytes(value).CopyTo(Data, Offset + 0x04);
|
||||
}
|
||||
|
||||
public int GenerateRandSeed
|
||||
public uint GenerateRandSeed
|
||||
{
|
||||
get => BitConverter.ToInt32(Data, Offset + 0x08);
|
||||
get => BitConverter.ToUInt32(Data, Offset + 0x08);
|
||||
set => BitConverter.GetBytes(value).CopyTo(Data, Offset + 0x08);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue