From 645d65bf3b8ce2d2988514fd3833666261e3ef2c Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 25 Feb 2024 23:51:53 -0600 Subject: [PATCH] Update SaveBlockAccessor7b.cs --- PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs b/PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs index c7ba06360..460c5cab6 100644 --- a/PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs +++ b/PKHeX.Core/Saves/Access/SaveBlockAccessor7b.cs @@ -51,7 +51,7 @@ public SaveBlockAccessor7b(SAV7b sav) Captured = new CaptureRecords(sav, GetBlockOffset(BelugaBlockIndex.CaptureRecord)); FashionPlayer = new Fashion7b(sav, GetBlockOffset(BelugaBlockIndex.FashionPlayer)); FashionStarter = new Fashion7b(sav, GetBlockOffset(BelugaBlockIndex.FashionStarter)); - Park = new GoParkStorage(sav, sav.Blocks.GetBlockOffset(BelugaBlockIndex.GoParkEntities)); + Park = new GoParkStorage(sav, GetBlockOffset(BelugaBlockIndex.GoParkEntities)); PlayerGeoLocation = new PlayerGeoLocation7b(sav, GetBlockOffset(BelugaBlockIndex.PlayerGeoLocation)); }