diff options
Diffstat (limited to 'src/game/debugcmds.cpp')
-rw-r--r-- | src/game/debugcmds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/debugcmds.cpp b/src/game/debugcmds.cpp index deb044be7b3..555ddc84d1f 100644 --- a/src/game/debugcmds.cpp +++ b/src/game/debugcmds.cpp @@ -216,7 +216,7 @@ bool ChatHandler::HandlePlaySound2Command(const char* args) return false; uint32 soundid = atoi(args); - m_session->GetPlayer()->PlaySound(soundid, false); + m_session->GetPlayer()->SendPlaySound(soundid, false); return true; } |