diff --git a/Dalamud/Game/ClientState/Party/PartyList.cs b/Dalamud/Game/ClientState/Party/PartyList.cs index bd303401f..047ea6e3e 100644 --- a/Dalamud/Game/ClientState/Party/PartyList.cs +++ b/Dalamud/Game/ClientState/Party/PartyList.cs @@ -62,6 +62,11 @@ namespace Dalamud.Game.ClientState.Party /// public IntPtr AllianceListAddress => (IntPtr)this.GroupManagerStruct->AllianceMembers; + /// + /// Gets the ID of the party. + /// + public long PartyId => this.GroupManagerStruct->PartyId; + private static int PartyMemberSize { get; } = Marshal.SizeOf(); private FFXIVClientStructs.FFXIV.Client.Game.Group.GroupManager* GroupManagerStruct => (FFXIVClientStructs.FFXIV.Client.Game.Group.GroupManager*)this.GroupManagerAddress;