From 34eb3abf04f731c6654a289377825ad9fc29af56 Mon Sep 17 00:00:00 2001 From: Nick Towle Date: Sat, 18 Jan 2025 11:51:16 -0500 Subject: [PATCH] WarWithin/TheStonevault/Trash: Remove workaround for Seismic Wave icon --- WarWithin/TheStonevault/Trash.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/WarWithin/TheStonevault/Trash.lua b/WarWithin/TheStonevault/Trash.lua index 68f9b86c4..c7a3949d7 100644 --- a/WarWithin/TheStonevault/Trash.lua +++ b/WarWithin/TheStonevault/Trash.lua @@ -47,8 +47,6 @@ if L then L.custom_on_autotalk = CL.autotalk L.custom_on_autotalk_desc = "|cFFFF0000Requires Warrior, Dwarf, or 25 skill in Khaz Algar Blacksmithing.|r Automatically select the NPC dialog option that grants your group the 'Imbued Iron Energy' aura." L.custom_on_autotalk_icon = mod:GetMenuIcon("SAY") - - L["425027_icon"] = "ability_earthen_pillar" -- change the icon of Seismic Wave so it doesn't match Ground Pound end -------------------------------------------------------------------------------- @@ -243,13 +241,13 @@ end -- Earth Infused Golem function mod:EarthInfusedGolemEngaged(guid) - self:Nameplate(425027, 5.5, guid, 1016245) -- Seismic Wave, fileId for L["425027_icon"] + self:Nameplate(425027, 5.5, guid) -- Seismic Wave self:Nameplate(425974, 13.4, guid) -- Ground Pound end function mod:SeismicWave(args) - self:Message(args.spellId, "purple", nil, L["425027_icon"]) - self:Nameplate(args.spellId, 18.2, args.sourceGUID, 1016245) -- fileId for L["425027_icon"] + self:Message(args.spellId, "purple") + self:Nameplate(args.spellId, 18.2, args.sourceGUID) self:PlaySound(args.spellId, "alarm") end