diff options
author | Mattes D <github@xoft.cz> | 2014-11-15 20:23:47 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-15 20:23:47 +0100 |
commit | 889aa7404dd37b862d8874c9d5545f51be19e17d (patch) | |
tree | 294728ef0c3416f4f5bc4911b859d6ad8ed24e97 /src/Generating | |
parent | DungeonRooms: Changed to work with the new shape generators. (diff) | |
download | cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar.gz cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar.bz2 cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar.lz cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar.xz cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.tar.zst cuberite-889aa7404dd37b862d8874c9d5545f51be19e17d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/ChunkDesc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/ChunkDesc.h b/src/Generating/ChunkDesc.h index b86041a7d..480106fb5 100644 --- a/src/Generating/ChunkDesc.h +++ b/src/Generating/ChunkDesc.h @@ -33,7 +33,7 @@ public: /** The datatype used to represent the entire chunk worth of shape. 0 = air 1 = solid - Indexed as [y + 256 * z + 256 * 16 * x]. */ + Indexed as [y + 256 * x + 256 * 16 * z]. */ typedef Byte Shape[256 * 16 * 16]; /** Uncompressed block metas, 1 meta per byte */ |