diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-07-13 11:09:19 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-07-13 11:09:19 +0200 |
commit | e48d172f49e9aeb9b73b49f54e0be4af3e14b9db (patch) | |
tree | 88fbd34759f5e007c8a01acb8df9ee2b6985858e /src/ChunkMap.cpp | |
parent | Changed BroadcastSoundEffect function to take floating pos. (diff) | |
parent | Merge pull request #1167 from Howaner/Plugins (diff) | |
download | cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar.gz cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar.bz2 cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar.lz cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar.xz cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.tar.zst cuberite-e48d172f49e9aeb9b73b49f54e0be4af3e14b9db.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 2253c5877..0a0a841cd 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -1278,7 +1278,7 @@ void cChunkMap::SetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYP -void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, bool a_SendToClients) +void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, bool a_SendToClients) { cChunkInterface ChunkInterface(this); if (a_BlockType == E_BLOCK_AIR) @@ -1303,7 +1303,7 @@ void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a -void cChunkMap::QueueSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType) +void cChunkMap::QueueSetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick, BLOCKTYPE a_PreviousBlockType) { int ChunkX, ChunkZ, X = a_BlockX, Y = a_BlockY, Z = a_BlockZ; cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ); |