summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.cpp
diff options
context:
space:
mode:
authorVictor <47831936+solvictor@users.noreply.github.com>2024-09-08 23:18:28 +0200
committerGitHub <noreply@github.com>2024-09-08 23:18:28 +0200
commit0325de7dacaf1e2feaea5eaab4791bc23d78f9e7 (patch)
treea100e066499ac29fc4c249e0f9202db06dd4c746 /src/ClientHandle.cpp
parentThe second value in Rotation is pitch not roll (#5573) (diff)
downloadcuberite-master.tar
cuberite-master.tar.gz
cuberite-master.tar.bz2
cuberite-master.tar.lz
cuberite-master.tar.xz
cuberite-master.tar.zst
cuberite-master.zip
Diffstat (limited to '')
-rw-r--r--src/ClientHandle.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index b726e5c6f..01c95095a 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -74,6 +74,7 @@ cClientHandle::cClientHandle(const AString & a_IPString, int a_ViewDistance) :
m_IPString(a_IPString),
m_Player(nullptr),
m_CachedSentChunk(std::numeric_limits<decltype(m_CachedSentChunk.m_ChunkX)>::max(), std::numeric_limits<decltype(m_CachedSentChunk.m_ChunkZ)>::max()),
+ m_ProxyConnection(false),
m_HasSentDC(false),
m_LastStreamedChunkX(std::numeric_limits<decltype(m_LastStreamedChunkX)>::max()), // bogus chunk coords to force streaming upon login
m_LastStreamedChunkZ(std::numeric_limits<decltype(m_LastStreamedChunkZ)>::max()),