This commit is contained in:
2024-08-24 22:41:08 +02:00
parent 77f1ac5d7a
commit c21f59778f
431 changed files with 68581 additions and 68581 deletions

View File

@@ -1,13 +1,13 @@
function()
if UnitExists("target") and UnitName("target"):match("Dargul") then
local name,_,_,startTimeMS,endTimeMS,= UnitCastingInfo("target")
if name == "Molten Crash" then
local name,_,_,_,_,expirationTime = UnitBuff("player", "Shield of the Righteous")
expirationTime = expirationTime * 1000
local time = GetTime() * 1000
if endTimeMS > expirationTime then
return true
end
end
end
function()
if UnitExists("target") and UnitName("target"):match("Dargul") then
local name,_,_,startTimeMS,endTimeMS,= UnitCastingInfo("target")
if name == "Molten Crash" then
local name,_,_,_,_,expirationTime = UnitBuff("player", "Shield of the Righteous")
expirationTime = expirationTime * 1000
local time = GetTime() * 1000
if endTimeMS > expirationTime then
return true
end
end
end
end