summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockHandler.cpp
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-09 17:16:07 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-09 17:16:07 +0200
commit3ccba12e390dc83b08393ad922b91825be2eedb7 (patch)
tree4ca54cf9aac85b7e78e5c282cbcef899912168ae /source/Blocks/BlockHandler.cpp
parentProtectionAreas: Added asserts to cStorage functions so that logic errors are found faster (diff)
downloadcuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.gz
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.bz2
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.lz
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.xz
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.tar.zst
cuberite-3ccba12e390dc83b08393ad922b91825be2eedb7.zip
Diffstat (limited to '')
-rw-r--r--source/Blocks/BlockHandler.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Blocks/BlockHandler.cpp b/source/Blocks/BlockHandler.cpp
index 149dcd98d..77c51f02a 100644
--- a/source/Blocks/BlockHandler.cpp
+++ b/source/Blocks/BlockHandler.cpp
@@ -57,6 +57,7 @@
#include "BlockBrewingStand.h"
#include "BlockCobWeb.h"
#include "BlockTNT.h"
+#include "BlockDeadBush.h"
@@ -149,6 +150,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType)
case E_BLOCK_RAIL: return new cBlockRailHandler (a_BlockType);
case E_BLOCK_POTATOES: return new cBlockCropsHandler (a_BlockType);
case E_BLOCK_POWERED_RAIL: return new cBlockRailHandler (a_BlockType);
+ case E_BLOCK_DEAD_BUSH: return new cBlockDeadBushHandler (a_BlockType);
case E_BLOCK_DETECTOR_RAIL: return new cBlockRailHandler (a_BlockType);
case E_BLOCK_REDSTONE_ORE: return new cBlockOreHandler (a_BlockType);
case E_BLOCK_REDSTONE_ORE_GLOWING: return new cBlockOreHandler (a_BlockType);