Thread: frame replacing
View Single Post
10-06-14, 11:11 AM   #15
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Where did you put the code I gave you? Are you sure it's even running? Add some print statements to make sure:

Code:
	if state == 1 then
		print("Shift pressed, removing aura filters")
		a, b = "CustomFilter", "__CustomFilter"
	else
		print("Shift released, restoring aura filters")
		a, b = "__CustomFilter", "CustomFilter"
	end
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote