Announce all taunts in chat frame #2

Merged
atomaka merged 5 commits from taunt-tracker into master 2021-01-12 21:37:01 -05:00
Showing only changes of commit 42a7a992fd - Show all commits

View file

@ -82,10 +82,21 @@ function MyAddon.announceKey()
end
end
local function multiSelect(table, ...)
result = {}
for i, val in ipairs(...) do
table.insert(result, table[val])
end
end
function MyAddon.announceTaunts(...)
event = select(2, ...)
spellId = select(12, ...)
a, b = multiSelect(..., 2, 12)
print(a)
print(b)
if event ~= 'SPELL_CAST_SUCCESS' or MyAddon.taunts[spellId] ~= true then
return
end