summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol18x.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-08-29 13:32:34 +0200
committerGitHub <noreply@github.com>2016-08-29 13:32:34 +0200
commitc6c2c5afdf883e2a330b02425e59e5ac5ff25ae3 (patch)
treef1d9104b186d02f5da8f31ed8ce124bfbff3f6b2 /src/Protocol/Protocol18x.h
parentFixed SendUnloadChunk bug (#3353) (diff)
parentProper respawn packets on dimension travel (diff)
downloadcuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar.gz
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar.bz2
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar.lz
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar.xz
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.tar.zst
cuberite-c6c2c5afdf883e2a330b02425e59e5ac5ff25ae3.zip
Diffstat (limited to 'src/Protocol/Protocol18x.h')
-rw-r--r--src/Protocol/Protocol18x.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Protocol/Protocol18x.h b/src/Protocol/Protocol18x.h
index 08a51f342..b8f9675ba 100644
--- a/src/Protocol/Protocol18x.h
+++ b/src/Protocol/Protocol18x.h
@@ -110,7 +110,7 @@ public:
virtual void SendPluginMessage (const AString & a_Channel, const AString & a_Message) override;
virtual void SendRemoveEntityEffect (const cEntity & a_Entity, int a_EffectID) override;
virtual void SendResetTitle (void) override;
- virtual void SendRespawn (eDimension a_Dimension, bool a_ShouldIgnoreDimensionChecks) override;
+ virtual void SendRespawn (eDimension a_Dimension) override;
virtual void SendSoundEffect (const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch) override;
virtual void SendExperience (void) override;
virtual void SendExperienceOrb (const cExpOrb & a_ExpOrb) override;
@@ -177,11 +177,6 @@ protected:
/** The logfile where the comm is logged, when g_ShouldLogComm is true */
cFile m_CommLogFile;
- /** The dimension that was last sent to a player in a Respawn or Login packet.
- Used to avoid Respawning into the same dimension, which confuses the client. */
- eDimension m_LastSentDimension;
-
-
/** Adds the received (unencrypted) data to m_ReceivedData, parses complete packets */
void AddReceivedData(const char * a_Data, size_t a_Size);