From 1fc73ff41b0b113ee0cbc072f8ed81a2c572924c Mon Sep 17 00:00:00 2001 From: Neo2003 Date: Sun, 5 Oct 2008 11:38:24 -0500 Subject: [svn] * PlaySound changed to SendPlaySound, moved to WorldObject and used everywhere instead of hard-coding packet --HG-- branch : trunk --- src/bindings/scripts/ScriptMgr.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/bindings/scripts/ScriptMgr.cpp') diff --git a/src/bindings/scripts/ScriptMgr.cpp b/src/bindings/scripts/ScriptMgr.cpp index 4dff1b7c374..e382b62e2e3 100644 --- a/src/bindings/scripts/ScriptMgr.cpp +++ b/src/bindings/scripts/ScriptMgr.cpp @@ -1853,10 +1853,7 @@ void ProcessScriptText(uint32 id, WorldObject* pSource, Unit* target) { if(GetSoundEntriesStore()->LookupEntry((*i).second.SoundId)) { - WorldPacket data(4); - data.SetOpcode(SMSG_PLAY_SOUND); - data << uint32((*i).second.SoundId); - pSource->SendMessageToSet(&data,false); + pSource->SendPlaySound((*i).second.SoundId, false); } else error_log("TSCR: ProcessScriptText id %u tried to process invalid soundid %u.",id,(*i).second.SoundId); -- cgit v1.2.3