Added a 'louder' LFD ready check noise, but this might not be the right event
This commit is contained in:
parent
998e51c038
commit
26af0aac7d
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue