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]; ///