summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-08-08 13:09:40 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-08-08 13:09:40 +0200
commit2f79ab2e2619925f378ff7a19b183f6b3ee6ce79 (patch)
treeff16dbe0c6f3b7d40d50733308d3a4be77687307 /src/Chunk.cpp
parentAdd documentation for @tigerw's new CMake flags (#4814) (diff)
downloadcuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar.gz
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar.bz2
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar.lz
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar.xz
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.tar.zst
cuberite-2f79ab2e2619925f378ff7a19b183f6b3ee6ce79.zip
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r--src/Chunk.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index e24aa7733..1aa377651 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -1715,7 +1715,7 @@ OwnedEntity cChunk::RemoveEntity(cEntity & a_Entity)
-bool cChunk::HasEntity(UInt32 a_EntityID)
+bool cChunk::HasEntity(UInt32 a_EntityID) const
{
for (const auto & Entity : m_Entities)
{
@@ -1731,7 +1731,7 @@ bool cChunk::HasEntity(UInt32 a_EntityID)
-bool cChunk::ForEachEntity(cEntityCallback a_Callback)
+bool cChunk::ForEachEntity(cEntityCallback a_Callback) const
{
// The entity list is locked by the parent chunkmap's CS
for (const auto & Entity : m_Entities)
@@ -1748,7 +1748,7 @@ bool cChunk::ForEachEntity(cEntityCallback a_Callback)
-bool cChunk::ForEachEntityInBox(const cBoundingBox & a_Box, cEntityCallback a_Callback)
+bool cChunk::ForEachEntityInBox(const cBoundingBox & a_Box, cEntityCallback a_Callback) const
{
// The entity list is locked by the parent chunkmap's CS
for (const auto & Entity : m_Entities)
@@ -1774,7 +1774,7 @@ bool cChunk::ForEachEntityInBox(const cBoundingBox & a_Box, cEntityCallback a_Ca
-bool cChunk::DoWithEntityByID(UInt32 a_EntityID, cEntityCallback a_Callback, bool & a_CallbackResult)
+bool cChunk::DoWithEntityByID(UInt32 a_EntityID, cEntityCallback a_Callback, bool & a_CallbackResult) const
{
// The entity list is locked by the parent chunkmap's CS
for (const auto & Entity : m_Entities)