Fix player storage get for v1.0

Oops, bad offset definition!
Closes #219
This commit is contained in:
Kurt
2020-05-20 20:32:08 -07:00
parent febcc4e024
commit bbee1a5f5b

View File

@@ -31,7 +31,7 @@ public sealed class PersonalOffsets10 : PersonalOffsets
public override int Pockets1 => PlayerOther + 0x4;
public override int Pockets2 => Pockets1 + (8 * Pockets1Count) + 0x18;
public override int Wallet => Pockets2 + (8 * Pockets2Count) + 0x18;
public override int ItemChest => PlayerOther + 0x18C;
public override int ItemChest => PlayerOther + 0x180;
public override int ItemCollectBit => PlayerOther + 0xA04C;
public override int ItemRemakeCollectBit => PlayerOther + 0xA7A0;
public override int Manpu => PlayerOther + 0xAF70;