diff options
author | Mattes D <github@xoft.cz> | 2014-04-15 08:16:16 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-15 08:16:16 +0200 |
commit | 112dd2c5ec60b55807f73ada7057488a98e769a5 (patch) | |
tree | 7fe960574b01b1bc1b76327a3f163fd2f69d06ce /src/Protocol/Protocol125.cpp | |
parent | ProtoProxy: Fixed weird gcc compilation errors. (diff) | |
parent | Implemented the 1.7.6 protocol and authenticator. (diff) | |
download | cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.gz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.bz2 cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.lz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.xz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.zst cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.zip |
Diffstat (limited to 'src/Protocol/Protocol125.cpp')
-rw-r--r-- | src/Protocol/Protocol125.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/Protocol/Protocol125.cpp b/src/Protocol/Protocol125.cpp index bf946ef19..af1b1c604 100644 --- a/src/Protocol/Protocol125.cpp +++ b/src/Protocol/Protocol125.cpp @@ -594,6 +594,15 @@ void cProtocol125::SendLogin(const cPlayer & a_Player, const cWorld & a_World) +void cProtocol125::SendLoginSuccess(void) +{ + // Not supported in this protocol version +} + + + + + void cProtocol125::SendMapColumn(int a_ID, int a_X, int a_Y, const Byte * a_Colors, unsigned int a_Length) { cCSLock Lock(m_CSPacket); @@ -642,6 +651,17 @@ void cProtocol125::SendMapDecorators(int a_ID, const cMapDecoratorList & a_Decor +void cProtocol125::SendMapInfo(int a_ID, unsigned int a_Scale) +{ + // This protocol doesn't support such message + UNUSED(a_ID); + UNUSED(a_Scale); +} + + + + + void cProtocol125::SendPickupSpawn(const cPickup & a_Pickup) { cCSLock Lock(m_CSPacket); @@ -683,6 +703,16 @@ void cProtocol125::SendParticleEffect(const AString & a_ParticleName, float a_Sr +void cProtocol125::SendPaintingSpawn(const cPainting & a_Painting) +{ + // Not implemented in this protocol version + UNUSED(a_Painting); +} + + + + + void cProtocol125::SendPlayerListItem(const cPlayer & a_Player, bool a_IsOnline) { cCSLock Lock(m_CSPacket); @@ -842,6 +872,18 @@ void cProtocol125::SendExperienceOrb(const cExpOrb & a_ExpOrb) +void cProtocol125::SendScoreboardObjective(const AString & a_Name, const AString & a_DisplayName, Byte a_Mode) +{ + // This protocol version doesn't support such message + UNUSED(a_Name); + UNUSED(a_DisplayName); + UNUSED(a_Mode); +} + + + + + void cProtocol125::SendSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) { // Not needed in this protocol version |