From 950f546a17564d934795aff2d50df37c088446b2 Mon Sep 17 00:00:00 2001 From: attick Date: Thu, 7 Nov 2019 11:54:30 -0500 Subject: [PATCH] Don't forget to re-disable the vtable lookup. --- Dalamud/Game/Internal/Gui/IconReplacer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Game/Internal/Gui/IconReplacer.cs b/Dalamud/Game/Internal/Gui/IconReplacer.cs index cd9027efd..99a54b8bd 100644 --- a/Dalamud/Game/Internal/Gui/IconReplacer.cs +++ b/Dalamud/Game/Internal/Gui/IconReplacer.cs @@ -82,7 +82,7 @@ namespace Dalamud.Game.Internal.Gui { // Check if player is loaded in by trying to get their buffs. // If not, skip everything until we are (game will crash cause I'm lazy). - + /* if (activeBuffArray == IntPtr.Zero) { try { activeBuffArray = FindBuffAddress(); @@ -93,7 +93,7 @@ namespace Dalamud.Game.Internal.Gui { return this.iconHook.Original(self, actionID); } } - + */ if (this.VanillaIDs.Contains(actionID)) return this.iconHook.Original(self, actionID); if (!this.CustomIDs.Contains(actionID)) return actionID;