diff options
author | Daniel O'Brien <marmot.daniel@gmail.com> | 2013-11-15 12:42:09 +0100 |
---|---|---|
committer | Daniel O'Brien <marmot.daniel@gmail.com> | 2013-11-15 12:42:09 +0100 |
commit | 1b2e6e74736f975386879aa5eb064df5b2f88dac (patch) | |
tree | 4ae0a0e6af71b9b0827ed2858feba251f8d065b3 /source/ClientHandle.cpp | |
parent | Merge remote-tracking branch 'upstream/master' into playerxp (diff) | |
download | cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar.gz cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar.bz2 cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar.lz cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar.xz cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.tar.zst cuberite-1b2e6e74736f975386879aa5eb064df5b2f88dac.zip |
Diffstat (limited to 'source/ClientHandle.cpp')
-rw-r--r-- | source/ClientHandle.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp index f8fd4a8b7..73852b886 100644 --- a/source/ClientHandle.cpp +++ b/source/ClientHandle.cpp @@ -1873,6 +1873,15 @@ void cClientHandle::SendRespawn(void) +void cClientHandle::SendSetExperience(void) +{ + m_Protocol->SendSetExperience(); +} + + + + + void cClientHandle::SendSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) { m_Protocol->SendSoundEffect(a_SoundName, a_SrcX, a_SrcY, a_SrcZ, a_Volume, a_Pitch); |