summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-07-13 11:02:28 +0200
committerMattes D <github@xoft.cz>2014-07-13 11:02:28 +0200
commit398cead1f34c2ea0003345d15c2610412f5c997b (patch)
tree3a9f3388b59661cbb7d6f2ddb86cd2a4db29b8c7 /src/ChunkMap.h
parentOnly one instance of server can be started (diff)
parentFixed wrong types. (BLOCKTYPE -> NIBBLETYPE) (diff)
downloadcuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar.gz
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar.bz2
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar.lz
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar.xz
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.tar.zst
cuberite-398cead1f34c2ea0003345d15c2610412f5c997b.zip
Diffstat (limited to '')
-rw-r--r--src/ChunkMap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChunkMap.h b/src/ChunkMap.h
index 4daa85ebd..973d0d219 100644
--- a/src/ChunkMap.h
+++ b/src/ChunkMap.h
@@ -154,9 +154,9 @@ public:
NIBBLETYPE GetBlockMeta (int a_BlockX, int a_BlockY, int a_BlockZ);
NIBBLETYPE GetBlockSkyLight (int a_BlockX, int a_BlockY, int a_BlockZ);
NIBBLETYPE GetBlockBlockLight(int a_BlockX, int a_BlockY, int a_BlockZ);
- void SetBlockMeta (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockMeta);
- void SetBlock (cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, bool a_SendToClients = true);
- void QueueSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType = E_BLOCK_AIR);
+ void SetBlockMeta (int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYPE a_BlockMeta);
+ void SetBlock (cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, bool a_SendToClients = true);
+ void QueueSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType = E_BLOCK_AIR);
bool GetBlockTypeMeta (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta);
bool GetBlockInfo (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_Meta, NIBBLETYPE & a_SkyLight, NIBBLETYPE & a_BlockLight);