1
0
Fork 0

Delete unused member

This commit is contained in:
Tiger Wang 2020-07-18 19:22:45 +01:00
parent bc1b70dcde
commit 9c6b5a3ec9
2 changed files with 0 additions and 4 deletions

View File

@ -91,7 +91,6 @@ cClientHandle::cClientHandle(const AString & a_IPString, int a_ViewDistance) :
m_LastDigBlockY(cChunkDef::Height + 1), // Invalid Y, so that the coords don't get picked up
m_LastDigBlockZ(0),
m_State(csConnected),
m_ShouldCheckDownloaded(false),
m_NumExplosionsThisTick(0),
m_NumBlockChangeInteractionsThisTick(0),
m_UniqueID(0),

View File

@ -523,9 +523,6 @@ private:
it may just read m_State without locking m_CSState. */
std::atomic<eState> m_State;
/** If set to true during csDownloadingWorld, the tick thread calls CheckIfWorldDownloaded() */
bool m_ShouldCheckDownloaded;
/** Number of explosions sent this tick */
int m_NumExplosionsThisTick;