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 f709da599a - Show all commits

View file

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