diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-06-29 23:44:01 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-06-29 23:44:16 +0200 |
commit | b9d4431f6f2b60802d66da03f0b915bbd2c846cb (patch) | |
tree | 7cae9033a5a29f9a3483230edbcb31b6b7127b84 /src/Protocol/Protocol17x.cpp | |
parent | Fixed offline UUID generator. (diff) | |
download | cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar.gz cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar.bz2 cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar.lz cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar.xz cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.tar.zst cuberite-b9d4431f6f2b60802d66da03f0b915bbd2c846cb.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 98fabedb2..df9c6b50d 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -986,11 +986,11 @@ void cProtocol172::SendRemoveEntityEffect(const cEntity & a_Entity, int a_Effect -void cProtocol172::SendRespawn(const cWorld & a_World) +void cProtocol172::SendRespawn(const cWorld & a_World, bool a_ShouldIgnoreDimensionChecks) { - if (m_LastSentDimension == a_World.GetDimension()) + if ((m_LastSentDimension == a_World.GetDimension()) && !a_ShouldIgnoreDimensionChecks) { - // Must not send a respawn for the world with the same dimension, the client goes cuckoo if we do + // Must not send a respawn for the world with the same dimension, the client goes cuckoo if we do (unless we are respawning from death) return; } |