Skip to content

Commit 4073aee

Browse files
Fix arrays in AgentSatisfactionSupply
1 parent 3d15339 commit 4073aee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentSatisfactionSupply.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public unsafe partial struct AgentSatisfactionSupply {
3434
[FieldOffset(0x4C8), CExporterExcel("FishingSpot")] public void* FishingSpotRow;
3535
[FieldOffset(0x4D0), CExporterExcel("SpearfishingNotebook")] public void* SpearfishingNotebookRow;
3636

37-
[FieldOffset(0x4D8)] internal FixedSizeArray2<uint> CrafterScripIds;
38-
[FieldOffset(0x4E0)] internal FixedSizeArray2<uint> GathererScripIds;
37+
[FieldOffset(0x4D8), FixedSizeArray] internal FixedSizeArray2<uint> _crafterScripIds;
38+
[FieldOffset(0x4E0), FixedSizeArray] internal FixedSizeArray2<uint> _gathererScripIds;
3939
[FieldOffset(0x4E8)] public uint TimeRemainingHours;
4040
[FieldOffset(0x4EC)] public uint TimeRemainingMinutes;
4141

0 commit comments

Comments
 (0)