summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-01-19 20:42:25 +0100
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-01-19 20:42:25 +0100
commite4c3d799ffddb93c658062f9663ec027fc2f1d5a (patch)
tree5f2bca71f363d928dca2aa6d3bf92347476504f9 /src/ClientHandle.cpp
parentChanged SendBlockEntity format slightly (diff)
downloadcuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar.gz
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar.bz2
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar.lz
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar.xz
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.tar.zst
cuberite-e4c3d799ffddb93c658062f9663ec027fc2f1d5a.zip
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r--src/ClientHandle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index 327fc0358..ec71f8fe8 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -2213,9 +2213,9 @@ void cClientHandle::SendUnloadChunk(int a_ChunkX, int a_ChunkZ)
-void cClientHandle::SendUpdateBlockEntity(int a_BlockX, int a_BlockY, int a_BlockZ, Byte a_Action, cBlockEntity & a_BlockEntity)
+void cClientHandle::SendUpdateBlockEntity(cBlockEntity & a_BlockEntity)
{
- m_Protocol->SendUpdateBlockEntity(a_BlockX, a_BlockY, a_BlockZ, a_Action, a_BlockEntity);
+ m_Protocol->SendUpdateBlockEntity(a_BlockEntity);
}