Skip to content

Commit

Permalink
support 4 new taunt spells
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordy Houtman committed Dec 2, 2024
1 parent b16f3cd commit 7f4d314
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/Src/Features/TauntMessage.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ function ITaunted.TauntMessage.isTaunt(spellId)
138937, -- Taunt #3
172907, --Taunt #4
55981, -- Mammoth Trumpet
12765, -- improved taunt

--Death Knight
51399, --Death Grip for Blood (49576 is now just the pull effect)
Expand Down Expand Up @@ -118,6 +119,8 @@ function ITaunted.TauntMessage.isTaunt(spellId)

-- Shaman
204683, --Dark Whisper
463161, -- Hand of Provocation
460468, -- Hand of Provocation #2

-- Warlock
-- Pets
Expand All @@ -126,6 +129,7 @@ function ITaunted.TauntMessage.isTaunt(spellId)

-- Engineering
40224, --Clintar agro pulse
468371, -- Mark of the Hunted
}

if ITaunted.Helpers.tableContainsValue(tauntSpells, spellId) then
Expand Down
2 changes: 1 addition & 1 deletion public/Src/Helpers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function ITaunted.Helpers.parseText(s, tab)
end

function getCharacterinfo(target)
local genderTable = { "neuter or unknown", "male", "female" };
local genderTable = { "neutral or unknown", "male", "female" };
local playerClass, englishClass, classIndex = UnitClass(target);
local name, upName, level = UnitName(target)
local unitLevel = UnitLevel(target)
Expand Down

0 comments on commit 7f4d314

Please sign in to comment.