summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-05-15 19:59:52 +0200
committerHowaner <franzi.moos@googlemail.com>2014-05-15 19:59:52 +0200
commit28a9c16db2212d57cca823a2b122530fdb70f210 (patch)
tree578fd78f1798ce2478110d594f98385018fbbbd8
parentMove radius check. (diff)
downloadcuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar.gz
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar.bz2
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar.lz
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar.xz
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.tar.zst
cuberite-28a9c16db2212d57cca823a2b122530fdb70f210.zip
-rw-r--r--src/ClientHandle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index cf9d0bfeb..0c897374b 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -943,7 +943,7 @@ void cClientHandle::HandleBlockDigStarted(int a_BlockX, int a_BlockY, int a_Bloc
(Diff(m_Player->GetPosZ(), (double)a_BlockZ) > 6)
)
{
- m_Player->GetWorld()->SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, this);
+ m_Player->GetWorld()->SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, m_Player);
return;
}