diff options
author | madmaxoft <github@xoft.cz> | 2014-03-01 02:54:46 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-01 02:54:46 +0100 |
commit | c18748648d791911e5e2df81ae600859c8522e9a (patch) | |
tree | 5a39487049be24e6a3cd5544daf86a01b4983a63 /src/Blocks | |
parent | Removed cBlockHandler forward declaration from cChunkInterface. (diff) | |
download | cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar.gz cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar.bz2 cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar.lz cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar.xz cuberite-c18748648d791911e5e2df81ae600859c8522e9a.tar.zst cuberite-c18748648d791911e5e2df81ae600859c8522e9a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/ChunkInterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/ChunkInterface.h b/src/Blocks/ChunkInterface.h index b58c0c086..be7c2e0e5 100644 --- a/src/Blocks/ChunkInterface.h +++ b/src/Blocks/ChunkInterface.h @@ -20,9 +20,9 @@ public: { return m_ChunkMap->GetBlock(a_BlockX,a_BlockY,a_BlockZ); } - BLOCKTYPE GetBlock(const Vector3i & a_Pos ) + BLOCKTYPE GetBlock(const Vector3i & a_Pos) { - return GetBlock( a_Pos.x, a_Pos.y, a_Pos.z ); + return GetBlock(a_Pos.x, a_Pos.y, a_Pos.z); } NIBBLETYPE GetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ) { |