summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-01 02:54:46 +0100
committermadmaxoft <github@xoft.cz>2014-03-01 02:54:46 +0100
commitc18748648d791911e5e2df81ae600859c8522e9a (patch)
tree5a39487049be24e6a3cd5544daf86a01b4983a63 /src
parentRemoved cBlockHandler forward declaration from cChunkInterface. (diff)
downloadcuberite-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 'src')
-rw-r--r--src/Blocks/ChunkInterface.h4
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)
{