update
Steven Jackson [10-10-14 - 05:59]
diff --git a/Interface/AddOns/SVUI/scripts/reactions.lua b/Interface/AddOns/SVUI/scripts/reactions.lua
index aa97378..caffc56 100644
--- a/Interface/AddOns/SVUI/scripts/reactions.lua
+++ b/Interface/AddOns/SVUI/scripts/reactions.lua
@@ -238,7 +238,7 @@ local ChatLogHandler_OnEvent = function(self, event, ...)
elseif (spellID == 126499 or spellID == 126500) then
outbound = (L["%s has prepared a %s - [%s]."]):format(sourceName, GetSpellLink(spellID), SPELL_STAT5_NAME)
elseif (spellID == 104958 or spellID == 105193 or spellID == 126503 or spellID == 126504 or spellID == 145166 or spellID == 145169 or spellID == 145196) then
- outbound = (L["%s has prepared a %s - [%s]."]):format(sourceName, GetSpellLink(spellID))
+ outbound = (L["%s has prepared a %s."]):format(sourceName, GetSpellLink(spellID))
-- Refreshment Table
elseif spellID == 43987 then
outbound = (L["%s has prepared a %s."]):format(sourceName, GetSpellLink(spellID))
diff --git a/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/pvp.lua b/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/pvp.lua
index b513809..7646504 100644
--- a/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/pvp.lua
+++ b/Interface/AddOns/SVUI_StyleOMatic/components/blizzard/pvp.lua
@@ -29,14 +29,11 @@ PVP STYLER
]]--
local _hook_PVPReadyDialogDisplay = function(self, _, _, _, queueType, _, queueRole)
if(queueRole == "DAMAGER") then
- local coords = _G.LFDQueueFrameRoleButtonDPS.background:GetTexCoord()
- _G.PVPReadyDialogRoleIcon.texture:SetTexCoord(coords)
+ PVPReadyDialogRoleIcon.texture:SetTexCoord(LFDQueueFrameRoleButtonDPS.background:GetTexCoord())
elseif(queueRole == "TANK") then
- local coords = _G.LFDQueueFrameRoleButtonTank.background:GetTexCoord()
- _G.PVPReadyDialogRoleIcon.texture:SetTexCoord(coords)
+ PVPReadyDialogRoleIcon.texture:SetTexCoord(LFDQueueFrameRoleButtonTank.background:GetTexCoord())
elseif(queueRole == "HEALER") then
- local coords = _G.LFDQueueFrameRoleButtonHealer.background:GetTexCoord()
- _G.PVPReadyDialogRoleIcon.texture:SetTexCoord(coords)
+ PVPReadyDialogRoleIcon.texture:SetTexCoord(LFDQueueFrameRoleButtonHealer.background:GetTexCoord())
end
if(queueType == "ARENA") then
self:SetHeight(100)