View Single Post
03-31-18, 05:18 PM   #12
nKweo
A Deviate Faerie Dragon
 
nKweo's Avatar
Join Date: Oct 2012
Posts: 16
That makes a lot of sense. At least I've managed to keep them from the raid frames. Using this function did the trick (thanks again Grimsbain!):
Code:
local IsNameplate = function(unit)
	if type(unit) ~= "string" then return false end
	if ( string.match(unit,"nameplate") ~= "nameplate" and string.match(unit,"NamePlate") ~= "NamePlate" ) then
		return false
	else
		return true
	end
end
Taint has never actually affected any functionality for me while playing, so I guess it's more of a 'puritan' thing. Pretty happy with this at the moment.

Last edited by nKweo : 04-01-18 at 03:00 PM.
  Reply With Quote