summaryrefslogtreecommitdiffstats
path: root/source/cChunk.h
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-26 03:13:40 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-26 03:13:40 +0100
commitc35db25269ea9549b996cd18c65b05a9f8d43387 (patch)
tree87c8ef140849ed116d59fdfdc88ac4385d3ce5b7 /source/cChunk.h
parent - Ignoring Debug and Release makes it easier to check what should be committed (diff)
downloadcuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar.gz
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar.bz2
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar.lz
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar.xz
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.tar.zst
cuberite-c35db25269ea9549b996cd18c65b05a9f8d43387.zip
Diffstat (limited to '')
-rw-r--r--source/cChunk.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/cChunk.h b/source/cChunk.h
index 0145908f5..b18a763b2 100644
--- a/source/cChunk.h
+++ b/source/cChunk.h
@@ -111,7 +111,12 @@ private:
void CreateBlockEntities();
- unsigned int MakeIndex(int x, int y, int z );
+ inline unsigned int cChunk::MakeIndex(int x, int y, int z )
+ {
+ if( x < 16 && x > -1 && y < 128 && y > -1 && z < 16 && z > -1 )
+ return y + (z * 128) + (x * 128 * 16);
+ return 0;
+ }
bool m_bCalculateLighting;
bool m_bCalculateHeightmap;