From 5530e083df5e5a1cc72128a380d6f10392d00d39 Mon Sep 17 00:00:00 2001 From: attick Date: Thu, 7 Nov 2019 11:53:19 -0500 Subject: [PATCH] re-disable buff array search --- 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 c831f8274..cd9027efd 100644 --- a/Dalamud/Game/Internal/Gui/IconReplacer.cs +++ b/Dalamud/Game/Internal/Gui/IconReplacer.cs @@ -841,11 +841,11 @@ namespace Dalamud.Game.Internal.Gui { return this.iconHook.Original(self, actionID); } - private bool SearchBuffArray(short needle) { + private bool SearchBuffArray(short needle) {/* for (int i = 0; i < 60; i++) { if (Marshal.ReadInt16(activeBuffArray + 4 * i) == needle) return true; } - + */ return false; }