diff --git a/PKHeX.Core/Saves/Substructures/Gen7/LGPE/PlayerGeoLocation7b.cs b/PKHeX.Core/Saves/Substructures/Gen7/LGPE/PlayerGeoLocation7b.cs index 31ef6d818..a1533e666 100644 --- a/PKHeX.Core/Saves/Substructures/Gen7/LGPE/PlayerGeoLocation7b.cs +++ b/PKHeX.Core/Saves/Substructures/Gen7/LGPE/PlayerGeoLocation7b.cs @@ -2,9 +2,7 @@ using System; namespace PKHeX.Core; -public sealed class PlayerGeoLocation7b : SaveBlock +public sealed class PlayerGeoLocation7b(SAV7b sav, int offset) : SaveBlock(sav, offset) { - public PlayerGeoLocation7b(SAV7b sav, int offset) : base(sav) => Offset = offset; - public Epoch1970Value AdventureBegin => new(Data.AsMemory(Offset + 0x48)); }