summaryrefslogtreecommitdiffstats
path: root/src/Chunk.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-08-30 12:21:39 +0200
committerHowaner <franzi.moos@googlemail.com>2014-08-30 12:21:39 +0200
commit80bd0a54579cbe5188d42bf8e1e51724d19a6fcf (patch)
tree39ded239dea2d76854283a47b3f29cc12b8801e1 /src/Chunk.h
parentAdded speed entity effect. (diff)
parentcChunk: Fixed the Coords param. (diff)
downloadcuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar.gz
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar.bz2
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar.lz
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar.xz
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.tar.zst
cuberite-80bd0a54579cbe5188d42bf8e1e51724d19a6fcf.zip
Diffstat (limited to 'src/Chunk.h')
-rw-r--r--src/Chunk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h
index 72a1f6c95..e5de22e3b 100644
--- a/src/Chunk.h
+++ b/src/Chunk.h
@@ -155,7 +155,7 @@ public:
void FastSetBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, bool a_SendToClients = true); // Doesn't force block updates on neighbors, use for simple changes such as grass growing etc.
BLOCKTYPE GetBlock(int a_RelX, int a_RelY, int a_RelZ) const;
- BLOCKTYPE GetBlock(Vector3i a_cords) const { return GetBlock(a_cords.x, a_cords.y, a_cords.z);}
+ BLOCKTYPE GetBlock(const Vector3i & a_RelCoords) const { return GetBlock(a_RelCoords.x, a_RelCoords.y, a_RelCoords.z); }
void GetBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta);
void GetBlockInfo (int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_Meta, NIBBLETYPE & a_SkyLight, NIBBLETYPE & a_BlockLight);