diff options
author | Mat <mail@mathias.is> | 2020-04-07 23:23:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 23:23:54 +0200 |
commit | 6a21bf979c5ef4ad473971257f59fe9101397cd6 (patch) | |
tree | c8d2c94a59982b7a80a36542e77ae872158a6814 /src/ClientHandle.cpp | |
parent | Filter blocks to add to redstone sim's wake queue (#4621) (diff) | |
download | cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar.gz cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar.bz2 cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar.lz cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar.xz cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.tar.zst cuberite-6a21bf979c5ef4ad473971257f59fe9101397cd6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 92ed2013f..cb9b83e26 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2929,6 +2929,15 @@ void cClientHandle::SendExperienceOrb(const cExpOrb & a_ExpOrb) +void cClientHandle::SendResourcePack(const AString & a_ResourcePackUrl) +{ + m_Protocol->SendResourcePack(a_ResourcePackUrl); +} + + + + + void cClientHandle::SendScoreboardObjective(const AString & a_Name, const AString & a_DisplayName, Byte a_Mode) { m_Protocol->SendScoreboardObjective(a_Name, a_DisplayName, a_Mode); |