diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-04 16:59:10 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-04 16:59:10 +0100 |
commit | 95eb3a7bd7a5c3017410b38594aca78387d6caa2 (patch) | |
tree | 44d4ad88031a947f6f2a69c1e3a25c95f169e21e /source/cChunk.h | |
parent | The world can now truly be made higher by incrementing cChunk::c_ChunkHeight to 256. !!HOWEVER THIS WILL DESTROY YOUR SAVED WORLD!! (diff) | |
download | cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar.gz cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar.bz2 cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar.lz cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar.xz cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.tar.zst cuberite-95eb3a7bd7a5c3017410b38594aca78387d6caa2.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cChunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChunk.h b/source/cChunk.h index f2e623f6e..dfbbd0c98 100644 --- a/source/cChunk.h +++ b/source/cChunk.h @@ -113,7 +113,7 @@ class cChunk {
public:
static const int c_ChunkWidth = 16;
- static const int c_ChunkHeight = 128; //256;
+ static const int c_ChunkHeight = 256;
static const int c_NumBlocks = c_ChunkWidth * c_ChunkHeight * c_ChunkWidth;
static const int c_BlockDataSize = c_NumBlocks * 2 + (c_NumBlocks/2); // 2.5 * numblocks
|