diff --git a/modules/miscellaneous.lua b/modules/miscellaneous.lua index 8e0cdb8..6935807 100644 --- a/modules/miscellaneous.lua +++ b/modules/miscellaneous.lua @@ -70,6 +70,9 @@ function mod:OnEnable() -- officer phone self:RegisterEvent("CHAT_MSG_OFFICER"); + + -- louder LFD sound + self:RegisterEvent("LFG_PROPOSAL_SHOW"); end -- Slash Commands -------------------------------------------------------------- @@ -306,3 +309,9 @@ for i=1,NUM_CHAT_WINDOWS do end) end end + + +-- LFD Louder Noise ------------------------------------------------------------ +function mod:LFG_PROPOSAL_SHOW() + PlaySound("ReadyCheck", "Master"); +end