diff options
author | jfhumann <j.f.humann@gmail.com> | 2014-04-18 22:47:59 +0200 |
---|---|---|
committer | jfhumann <j.f.humann@gmail.com> | 2014-04-18 22:47:59 +0200 |
commit | 5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17 (patch) | |
tree | 365677bf135442f15371ef77cc0ee3f378fd8f4b /src/Chunk.h | |
parent | Small style changes (diff) | |
download | cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar.gz cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar.bz2 cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar.lz cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar.xz cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.tar.zst cuberite-5bed1c09bc239f0b5c7b31945c4ee3e5b94cdf17.zip |
Diffstat (limited to 'src/Chunk.h')
-rw-r--r-- | src/Chunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index 774770028..f20134e66 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -389,7 +389,7 @@ private: BLOCKTYPE m_PreviousType; sSetBlockQueueItem(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType) : - m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ), m_BlockType(a_BlockType), m_BlockMeta(a_BlockMeta), m_Tick(a_Tick), m_PreviousType(a_PreviousBlockType) + m_Tick(a_Tick), m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ), m_BlockType(a_BlockType), m_BlockMeta(a_BlockMeta), m_PreviousType(a_PreviousBlockType) { } } ; |