View Single Post
02-13-22, 08:45 PM   #3
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by Zaqqari View Post
Is there any way to modify the script to never touch friendly nameplates while in those protected instances? The first line is creating errors every time it tries to run.

Something like
Lua Code:
  1. hooksecurefunc(NameplateBuffContainerMixin, "UpdateAnchor", function(self)
  2.     if IsInInstance() then return end
  3.     -- do stuff
  4. end
  Reply With Quote