From 7fec6207f2507b572b5fb04f167972459cefc397 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sat, 27 May 2023 02:24:14 -0400 Subject: [PATCH] fix: update friend list --- XivCommon/Functions/FriendList/FriendListEntry.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/XivCommon/Functions/FriendList/FriendListEntry.cs b/XivCommon/Functions/FriendList/FriendListEntry.cs index 8f809ad..3a35d62 100755 --- a/XivCommon/Functions/FriendList/FriendListEntry.cs +++ b/XivCommon/Functions/FriendList/FriendListEntry.cs @@ -9,7 +9,7 @@ namespace XivCommon.Functions.FriendList { /// [StructLayout(LayoutKind.Explicit, Size = Size)] public unsafe struct FriendListEntry { - internal const int Size = 96; + internal const int Size = 104; /// /// The content ID of the friend. @@ -20,31 +20,31 @@ namespace XivCommon.Functions.FriendList { /// /// The current world of the friend. /// - [FieldOffset(0x16)] + [FieldOffset(0x1E)] public readonly ushort CurrentWorld; /// /// The home world of the friend. /// - [FieldOffset(0x18)] + [FieldOffset(0x20)] public readonly ushort HomeWorld; /// /// The job the friend is currently on. /// - [FieldOffset(0x21)] + [FieldOffset(0x29)] public readonly byte Job; /// /// The friend's raw SeString name. See . /// - [FieldOffset(0x22)] + [FieldOffset(0x2A)] public fixed byte RawName[32]; /// /// The friend's raw SeString free company tag. See . /// - [FieldOffset(0x42)] + [FieldOffset(0x4A)] public fixed byte RawFreeCompany[5]; ///