summaryrefslogtreecommitdiffstats
path: root/source/cWorld.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-08-31 23:59:57 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-08-31 23:59:57 +0200
commit7824ce9d6352664bd291e57a3084e5c51af5d4a6 (patch)
tree8ba7b1476ec2c807b9ed2f0d7cb224f219dbd57b /source/cWorld.cpp
parentFix for the nightbuild script packing the wrong PDBs (diff)
downloadcuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar.gz
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar.bz2
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar.lz
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar.xz
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.tar.zst
cuberite-7824ce9d6352664bd291e57a3084e5c51af5d4a6.zip
Diffstat (limited to '')
-rw-r--r--source/cWorld.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cWorld.cpp b/source/cWorld.cpp
index 9348eda7d..776d25732 100644
--- a/source/cWorld.cpp
+++ b/source/cWorld.cpp
@@ -1304,9 +1304,9 @@ void cWorld::BroadcastEntHeadLook(const cEntity & a_Entity, const cClientHandle
-void cWorld::BroadcastBlockAction(int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, const cClientHandle * a_Exclude)
+void cWorld::BroadcastBlockAction(int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType, const cClientHandle * a_Exclude)
{
- m_ChunkMap->BroadcastBlockAction(a_BlockX, a_BlockY, a_BlockZ, a_Byte1, a_Byte2, a_Exclude);
+ m_ChunkMap->BroadcastBlockAction(a_BlockX, a_BlockY, a_BlockZ, a_Byte1, a_Byte2, a_BlockType, a_Exclude);
}