re-disable buff array search

This commit is contained in:
attick 2019-11-07 11:53:19 -05:00
parent f93842d5c6
commit 5530e083df

View file

@ -841,11 +841,11 @@ namespace Dalamud.Game.Internal.Gui {
return this.iconHook.Original(self, actionID); return this.iconHook.Original(self, actionID);
} }
private bool SearchBuffArray(short needle) { private bool SearchBuffArray(short needle) {/*
for (int i = 0; i < 60; i++) { for (int i = 0; i < 60; i++) {
if (Marshal.ReadInt16(activeBuffArray + 4 * i) == needle) return true; if (Marshal.ReadInt16(activeBuffArray + 4 * i) == needle) return true;
} }
*/
return false; return false;
} }