summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockHandler.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
committerMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
commitaa2edeae7754b6543cc0bd5a234f15d395da4c67 (patch)
treeef92d1a6f215c15deffc8f41139bdc8b3ccf26d5 /source/Blocks/BlockHandler.cpp
parentMerge pull request #175 from tigerw/bugfixes (diff)
parentMultiple fixes [SEE DESC] (diff)
downloadcuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.gz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.bz2
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.lz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.xz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.zst
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.zip
Diffstat (limited to 'source/Blocks/BlockHandler.cpp')
-rw-r--r--source/Blocks/BlockHandler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Blocks/BlockHandler.cpp b/source/Blocks/BlockHandler.cpp
index 3e97d1e9d..e1cfebb56 100644
--- a/source/Blocks/BlockHandler.cpp
+++ b/source/Blocks/BlockHandler.cpp
@@ -41,6 +41,7 @@
#include "BlockNote.h"
#include "BlockOre.h"
#include "BlockPiston.h"
+#include "BlockPlanks.h"
#include "BlockPumpkin.h"
#include "BlockRail.h"
#include "BlockRedstone.h"
@@ -153,7 +154,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType)
case E_BLOCK_NOTE_BLOCK: return new cBlockNoteHandler (a_BlockType);
case E_BLOCK_PISTON: return new cBlockPistonHandler (a_BlockType);
case E_BLOCK_PISTON_EXTENSION: return new cBlockPistonHeadHandler ();
- case E_BLOCK_PLANKS: return new cBlockWoodHandler (a_BlockType);
+ case E_BLOCK_PLANKS: return new cBlockPlanksHandler (a_BlockType);
case E_BLOCK_PUMPKIN: return new cBlockPumpkinHandler (a_BlockType);
case E_BLOCK_JACK_O_LANTERN: return new cBlockPumpkinHandler (a_BlockType);
case E_BLOCK_PUMPKIN_STEM: return new cBlockStemsHandler (a_BlockType);