diff options
author | madmaxoft <github@xoft.cz> | 2013-08-19 23:43:08 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-19 23:43:08 +0200 |
commit | 2e5de0c13d10a54beb33370b5364b8d8cc4c1550 (patch) | |
tree | b50cb4c72e4b525f44a2067f1e6c060a97e21b7d /source/Chunk.h | |
parent | Debuggers: Added continuous hunger reporting. (diff) | |
parent | Additional piston corrections (diff) | |
download | cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar.gz cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar.bz2 cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar.lz cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar.xz cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.tar.zst cuberite-2e5de0c13d10a54beb33370b5364b8d8cc4c1550.zip |
Diffstat (limited to 'source/Chunk.h')
-rw-r--r-- | source/Chunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Chunk.h b/source/Chunk.h index 6e8fe5cbf..c979b7928 100644 --- a/source/Chunk.h +++ b/source/Chunk.h @@ -330,7 +330,7 @@ private: Int64 m_Tick; sSetBlockQueueItem(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick) : - m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ) + m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ), m_BlockType(a_BlockType), m_BlockMeta(a_BlockMeta), m_Tick(a_Tick) { } } ; |