Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
muleyo authored Sep 9, 2023
1 parent bcad4c5 commit 6b20cca
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Custom.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
-- Table for function "addDebuffs(aura)" in BigDebuffs Code
BigDebuffsUnwantedSpells = {
80354, -- Temporal Displacement
371070, -- Rotting From Within
390435, -- Exhaustion
57723, -- Exhaustion
206151, -- Challenger's Burden
264689, -- Fatigued
}

-- Iterate through unwanted debuffs
function BigDebuffsUnwantedSpell(spellId)
for _, unwantedSpellID in ipairs(BigDebuffsUnwantedSpells) do
if unwantedSpellID == spellId then
return true
end
end

return false
end

0 comments on commit 6b20cca

Please sign in to comment.