Skip to content

Commit a45e53f

Browse files
committed
lint
1 parent 6ec4d5c commit a45e53f

File tree

1 file changed

+2
-2
lines changed
  • Skin/Interface/AddOns/Blizzard_ChatFrameBase/Mainline

1 file changed

+2
-2
lines changed

Skin/Interface/AddOns/Blizzard_ChatFrameBase/Mainline/ChatFrame.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function private.SharedXML.ChatFrame()
106106

107107
if _G.ChatFrameUtil and _G.ChatFrameUtil.GetDecoratedSenderName then
108108
_G.ChatFrameUtil.GetDecoratedSenderName = function(event, ...)
109-
local text, senderName, languageName, channelName, playerName2, specialFlags, zoneChannelID, channelIndex, channelBaseName, languageID, lineID, senderGUID, bnSenderID, isMobile = ...
109+
local _, senderName, _, _, _, _, _, channelIndex, _, _, _, senderGUID, _, _ = ...
110110
local chatType = event:sub(10)
111111

112112
if chatType:find("^WHISPER") then
@@ -137,7 +137,7 @@ function private.SharedXML.ChatFrame()
137137
end
138138

139139
if senderGUID and chatTypeInfo and _G.ChatFrameUtil.ShouldColorChatByClass(chatTypeInfo) and _G.GetPlayerInfoByGUID ~= nil then
140-
local localizedClass, englishClass = _G.GetPlayerInfoByGUID(senderGUID)
140+
local _, englishClass = _G.GetPlayerInfoByGUID(senderGUID)
141141

142142
if englishClass then
143143
local classColor = _G.RAID_CLASS_COLORS[englishClass]

0 commit comments

Comments
 (0)