diff options
Diffstat (limited to '')
-rw-r--r-- | src/ChunkSender.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkSender.h b/src/ChunkSender.h index bac09dd8b..baee32ec9 100644 --- a/src/ChunkSender.h +++ b/src/ChunkSender.h @@ -122,7 +122,7 @@ protected: // NOTE that m_BlockData[] is inherited from the cChunkDataCollector unsigned char m_BiomeMap[cChunkDef::Width * cChunkDef::Width]; std::vector<Vector3i> m_BlockEntities; // Coords of the block entities to send - // TODO: sEntityIDs m_Entities; // Entity-IDs of the entities to send + std::vector<UInt32> m_EntityIDs; // Entity-IDs of the entities to send // cIsThread override: virtual void Execute(void) override; |