diff options
Diffstat (limited to '')
-rw-r--r-- | source/cChunk.h | 7 |
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;
|