diff options
author | Mattes D <github@xoft.cz> | 2014-09-04 22:25:19 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-04 22:25:19 +0200 |
commit | e9dda864eae043da5664a683ab08910c3081e571 (patch) | |
tree | 040923a3d26266e1ccbce3f3ee44079c511702b9 /src/World.cpp | |
parent | Merge pull request #1371 from DayBr3ak/master (diff) | |
parent | Fixed compilation after chunk Y removal. (diff) | |
download | cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar.gz cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar.bz2 cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar.lz cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar.xz cuberite-e9dda864eae043da5664a683ab08910c3081e571.tar.zst cuberite-e9dda864eae043da5664a683ab08910c3081e571.zip |
Diffstat (limited to 'src/World.cpp')
-rw-r--r-- | src/World.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/World.cpp b/src/World.cpp index dd6017f0d..2a3336dee 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -2696,6 +2696,15 @@ bool cWorld::ForEachEntityInChunk(int a_ChunkX, int a_ChunkZ, cEntityCallback & +bool cWorld::ForEachEntityInBox(const cBoundingBox & a_Box, cEntityCallback & a_Callback) +{ + return m_ChunkMap->ForEachEntityInBox(a_Box, a_Callback); +} + + + + + bool cWorld::DoWithEntityByID(int a_UniqueID, cEntityCallback & a_Callback) { return m_ChunkMap->DoWithEntityByID(a_UniqueID, a_Callback); |