1
0
Fork 0

Forgotten changes to cChunkInterface.

This commit is contained in:
madmaxoft 2014-03-01 02:54:46 +01:00
parent aecbf77293
commit c18748648d
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{