From 21f25615af622b1e0d05d959e0a4cb0bfe56b0fb Mon Sep 17 00:00:00 2001 From: James Whitehead II Date: Fri, 22 Oct 2010 11:23:20 +0100 Subject: [PATCH] Add friend/enemy attributes to remote snippet as well --- Clique.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Clique.lua b/Clique.lua index 33faac4..6de2578 100755 --- a/Clique.lua +++ b/Clique.lua @@ -337,10 +337,12 @@ function addon:GetClickAttributes(global) if entry.sets.friend then local newbutton = "friend" .. suffix bits[#bits + 1] = ATTR(prefix, "helpbutton", suffix, newbutton) + rembits[#rembits + 1] = REMATTR(prefix, "helpbutton", suffix) suffix = newbutton elseif entry.sets.enemy then local newbutton = "enemy" .. suffix bits[#bits + 1] = ATTR(prefix, "harmbutton", suffix, newbutton) + rembits[#rembits + 1] = REMATTR(prefix, "harmbutton", suffix) suffix = newbutton end -- 1.7.9.5