diff --git a/Custom.lua b/Custom.lua new file mode 100644 index 0000000..493e049 --- /dev/null +++ b/Custom.lua @@ -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 \ No newline at end of file