fix shadowform in autoshift

This commit is contained in:
shagu
2016-08-15 21:04:07 +02:00
parent f55eb8b9be
commit fec2d375ca
+10 -3
View File
@@ -71,7 +71,7 @@ pfUI:RegisterModule("autoshift", function ()
pfUI.autoshift:SetScript("OnEvent", function()
pfUI.autoshift.lastError = arg1
local CancelLater = nil
for id, errorstring in pairs(pfUI.autoshift.errors) do
if arg1 == errorstring then
for i=0,15,1 do
@@ -79,12 +79,19 @@ pfUI:RegisterModule("autoshift", function ()
if (currBuffTex) then
for id, bufftype in pairs(pfUI.autoshift.buffs) do
if string.find(string.lower(currBuffTex), bufftype) then
CancelPlayerBuff(i)
return
if string.find(string.lower(currBuffTex), "spell_shadow_shadowform") then
CancelLater = i
else
CancelPlayerBuff(i)
return
end
end
end
end
end
if CancelLater then
CancelPlayerBuff(CancelLater)
end
end
end
end)