diff options
author | Mattes D <github@xoft.cz> | 2015-05-26 08:46:16 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-05-26 08:46:16 +0200 |
commit | c3c30a78e124a36f8e419658b13a6c60306f62b3 (patch) | |
tree | 3709d9083ecff3582b88be19c8c461132e5bc69b /src/Protocol/Protocol17x.cpp | |
parent | Merge pull request #2138 from Seadragon91/server_uptime (diff) | |
parent | Implement backend for /title command (diff) | |
download | cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar.gz cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar.bz2 cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar.lz cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar.xz cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.tar.zst cuberite-c3c30a78e124a36f8e419658b13a6c60306f62b3.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 799c021f3..0bd219fb1 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -555,6 +555,15 @@ void cProtocol172::SendHealth(void) +void cProtocol172::SendHideTitle(void) +{ + // Not implemented in this protocol version +} + + + + + void cProtocol172::SendInventorySlot(char a_WindowID, short a_SlotNum, const cItem & a_Item) { ASSERT(m_State == 3); // In game mode? @@ -995,6 +1004,15 @@ void cProtocol172::SendRemoveEntityEffect(const cEntity & a_Entity, int a_Effect +void cProtocol172::SendResetTitle(void) +{ + // Not implemented in this protocol version +} + + + + + void cProtocol172::SendRespawn(eDimension a_Dimension, bool a_ShouldIgnoreDimensionChecks) { if ((m_LastSentDimension == a_Dimension) && !a_ShouldIgnoreDimensionChecks) @@ -1094,6 +1112,42 @@ void cProtocol172::SendDisplayObjective(const AString & a_Objective, cScoreboard +void cProtocol172::SendSetSubTitle(const cCompositeChat & a_SubTitle) +{ + // Not implemented in this protocol version +} + + + + + +void cProtocol172::SendSetRawSubTitle(const AString & a_SubTitle) +{ + // Not implemented in this protocol version +} + + + + + +void cProtocol172::SendSetTitle(const cCompositeChat & a_Title) +{ + // Not implemented in this protocol version +} + + + + + +void cProtocol172::SendSetRawTitle(const AString & a_Title) +{ + // Not implemented in this protocol version +} + + + + + void cProtocol172::SendSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch) { ASSERT(m_State == 3); // In game mode? @@ -1296,6 +1350,15 @@ void cProtocol172::SendThunderbolt(int a_BlockX, int a_BlockY, int a_BlockZ) +void cProtocol172::SendTitleTimes(int a_FadeInTicks, int a_DisplayTicks, int a_FadeOutTicks) +{ + // Not implemented in this protocol version +} + + + + + void cProtocol172::SendTimeUpdate(Int64 a_WorldAge, Int64 a_TimeOfDay, bool a_DoDaylightCycle) { ASSERT(m_State == 3); // In game mode? |