View Single Post
04-16-20, 10:14 AM   #5
Lybrial
A Flamescale Wyrmkin
AddOn Compiler - Click to view compilations
Join Date: Jan 2010
Posts: 120
This is better to avoid the error:

Lua Code:
  1. local function temporaryBugFix()
  2.     hooksecurefunc(_G.ClassNameplateManaBarFrame, "Show", function(self) self:Hide() end);
  3.     hooksecurefunc(_G.DeathKnightResourceOverlayFrame, "Show", function(self) self:Hide() end);
  4. end
  Reply With Quote