summaryrefslogtreecommitdiffstats
path: root/source/ClientHandle.cpp
diff options
context:
space:
mode:
authorkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
committerkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
commitb75fc5f4e8dc837f069e89541b52144defa2d1b9 (patch)
tree2e9a05e1ed16da917c5e8651b1bb70100a9db153 /source/ClientHandle.cpp
parentNoise: removed the unused SSE branches and unused interpolation methods. Removed the Noise.inc file. (diff)
downloadcuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.gz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.bz2
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.lz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.xz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.zst
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.zip
Diffstat (limited to 'source/ClientHandle.cpp')
-rw-r--r--source/ClientHandle.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp
index 497639649..2a8ceabc7 100644
--- a/source/ClientHandle.cpp
+++ b/source/ClientHandle.cpp
@@ -1552,6 +1552,15 @@ void cClientHandle::SendEntityStatus(const cEntity & a_Entity, char a_Status)
+void cClientHandle::SendExplosion(double a_BlockX, double a_BlockY, double a_BlockZ, float a_Radius, cVector3iList a_BlocksAffected, float a_PlayerMotionX, float a_PlayerMotionY, float a_PlayerMotionZ)
+{
+ m_Protocol->SendExplosion(a_BlockX,a_BlockY,a_BlockZ,a_Radius, a_BlocksAffected, a_PlayerMotionX, a_PlayerMotionY,a_PlayerMotionZ);
+}
+
+
+
+
+
void cClientHandle::SendMetadata(const cPawn & a_Pawn)
{
m_Protocol->SendMetadata(a_Pawn);