mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-10 03:16:13 -05:00
Update PlayerGeoLocation7b To Match Changes To SaveBlock Constructor (#4194)
This commit is contained in:
@@ -2,9 +2,7 @@
|
||||
|
||||
namespace PKHeX.Core;
|
||||
|
||||
public sealed class PlayerGeoLocation7b : SaveBlock<SAV7b>
|
||||
public sealed class PlayerGeoLocation7b(SAV7b sav, int offset) : SaveBlock<SAV7b>(sav, offset)
|
||||
{
|
||||
public PlayerGeoLocation7b(SAV7b sav, int offset) : base(sav) => Offset = offset;
|
||||
|
||||
public Epoch1970Value AdventureBegin => new(Data.AsMemory(Offset + 0x48));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user