diff options
Diffstat (limited to 'source/cClientHandle.h')
-rw-r--r-- | source/cClientHandle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cClientHandle.h b/source/cClientHandle.h index 69c3f3ae3..05ec39f07 100644 --- a/source/cClientHandle.h +++ b/source/cClientHandle.h @@ -111,6 +111,9 @@ public: /// Returns true if the client wants the chunk specified to be sent (in m_ChunksToSend)
bool WantsSendChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ);
+
+ /// Adds the chunk specified to the list of chunks wanted for sending (m_ChunksToSend)
+ void AddWantedChunk(int a_ChunkX, int a_ChunkZ);
private:
|