From 89441e9b9e839207bce8ef95c356b8b849e9a59b Mon Sep 17 00:00:00 2001 From: Joe Vaughan Date: Mon, 24 Oct 2016 18:14:07 +0100 Subject: [PATCH] Fix channel for BattleNet whispers fixed a typo (which would lead to a but in BattleNet whispers. --- SVUI_Chat/SVUI_Chat.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SVUI_Chat/SVUI_Chat.lua b/SVUI_Chat/SVUI_Chat.lua index af2f163..d9fa438 100644 --- a/SVUI_Chat/SVUI_Chat.lua +++ b/SVUI_Chat/SVUI_Chat.lua @@ -1441,7 +1441,7 @@ function MOD:CHAT_MSG_WHISPER(event, ...) end function MOD:CHAT_MSG_BN_WHISPER(event, ...) - if(not InCombatLockdown() and WHISPER_SOUND) then PlaySoundFile(WHISPER_SOUND, SV.db.Chat.psst or "Master") end + if(not InCombatLockdown() and WHISPER_SOUND) then PlaySoundFile(WHISPER_SOUND, SV.db.Chat.psst_channel or "Master") end if(self.db.general.saveChats) then self:SAVE_CHAT_HISTORY(event, ...) end -- 1.7.9.5