summaryrefslogtreecommitdiffstats
path: root/src/Blocks/ChunkInterface.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-02 15:59:36 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-02 15:59:36 +0100
commit42497847acd65c34b67f4c6c2a16320ecbe19c65 (patch)
treeca1faaae5c7d0fbd756f4cee56f61500ba0a12ed /src/Blocks/ChunkInterface.cpp
parentMerge branch 'master' into GeneratingBenchmark2 (diff)
downloadcuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.gz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.bz2
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.lz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.xz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.zst
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.zip
Diffstat (limited to 'src/Blocks/ChunkInterface.cpp')
-rw-r--r--src/Blocks/ChunkInterface.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Blocks/ChunkInterface.cpp b/src/Blocks/ChunkInterface.cpp
new file mode 100644
index 000000000..b2dda19f4
--- /dev/null
+++ b/src/Blocks/ChunkInterface.cpp
@@ -0,0 +1,12 @@
+
+#include "Globals.h"
+
+#include "ChunkInterface.h"
+#include "BlockHandler.h"
+
+bool cChunkInterface::DigBlock(cWorldInterface & a_WorldInterface, int a_X, int a_Y, int a_Z)
+{
+ cBlockHandler *Handler = cBlockHandler::GetBlockHandler(GetBlock(a_X, a_Y, a_Z));
+ Handler->OnDestroyed(*this, a_WorldInterface, a_X, a_Y, a_Z);
+ return m_ChunkMap->DigBlock(a_X, a_Y, a_Z);
+}