From 3bfd6740d5c5e529b6b0d2f1cbd17fcc3c628588 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Wed, 12 Aug 2020 02:47:31 +0200 Subject: [PATCH] fix: stub Party List --- Dalamud/Game/ClientState/PartyList.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dalamud/Game/ClientState/PartyList.cs b/Dalamud/Game/ClientState/PartyList.cs index 572122c05..59dc83646 100644 --- a/Dalamud/Game/ClientState/PartyList.cs +++ b/Dalamud/Game/ClientState/PartyList.cs @@ -31,7 +31,8 @@ namespace Dalamud.Game.ClientState public void Enable() { - this.partyListUpdateHook.Enable(); + // TODO Fix for 5.3 + //this.partyListUpdateHook.Enable(); } public void Dispose() @@ -52,8 +53,7 @@ namespace Dalamud.Game.ClientState public PartyMember this[int index] { - get - { + get { if (!this.isReady) return null; if (index >= Length)