summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol125.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-09 11:39:42 +0100
committermadmaxoft <github@xoft.cz>2014-01-09 11:39:42 +0100
commitfe978f0d1e01e284b591e1d5a08ebb24161fd587 (patch)
treefb8c1c28e7e35d5b6fe34373636d0c27c6881397 /src/Protocol/Protocol125.cpp
parentComposition generator creating moved to a separate function. (diff)
downloadcuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar.gz
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar.bz2
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar.lz
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar.xz
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.tar.zst
cuberite-fe978f0d1e01e284b591e1d5a08ebb24161fd587.zip
Diffstat (limited to 'src/Protocol/Protocol125.cpp')
-rw-r--r--src/Protocol/Protocol125.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Protocol/Protocol125.cpp b/src/Protocol/Protocol125.cpp
index e49dd43ff..48c085ae5 100644
--- a/src/Protocol/Protocol125.cpp
+++ b/src/Protocol/Protocol125.cpp
@@ -704,6 +704,20 @@ void cProtocol125::SendPlayerSpawn(const cPlayer & a_Player)
+void cProtocol125::SendPluginMessage(const AString & a_Channel, const AString & a_Message)
+{
+ cCSLock Lock(m_CSPacket);
+ WriteByte(PACKET_PLUGIN_MESSAGE);
+ WriteString(a_Channel);
+ WriteShort((short)a_Message.size());
+ SendData(a_Message.data(), a_Message.size());
+ Flush();
+}
+
+
+
+
+
void cProtocol125::SendRemoveEntityEffect(const cEntity & a_Entity, int a_EffectID)
{
cCSLock Lock(m_CSPacket);