wow-addons/!!!RemoveHonorless/RemoveHonorless.lua

12 lines
296 B
Lua
Raw Normal View History

2020-11-21 12:15:23 +01:00
local frame = CreateFrame("FRAME")
frame:SetScript("OnUpdate", function(self, elapsed)
for i = 1, 255 do
_, _, _, _, _, _, _, _, _, spellId = UnitBuff("player", i)
if spellId == 2479 then
CancelUnitBuff("player", i)
frame:SetScript("OnUpdate", nil)
break
end
end
end)