1
0
Fork 0

Added a 'louder' LFD ready check noise, but this might not be the right event

This commit is contained in:
pigmonkey 2011-06-19 21:35:20 -04:00
parent 998e51c038
commit 26af0aac7d
1 changed files with 9 additions and 0 deletions

View File

@ -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