diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-23 23:32:45 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-23 23:32:45 +0100 |
commit | f622f4317c76aa287649da965456562a32bce41b (patch) | |
tree | c4bb86026ec7565b090c03a07840c13d067c534a /src/Blocks/BlockHandler.cpp | |
parent | Fixed bad cmake document interpretation (diff) | |
download | cuberite-f622f4317c76aa287649da965456562a32bce41b.tar cuberite-f622f4317c76aa287649da965456562a32bce41b.tar.gz cuberite-f622f4317c76aa287649da965456562a32bce41b.tar.bz2 cuberite-f622f4317c76aa287649da965456562a32bce41b.tar.lz cuberite-f622f4317c76aa287649da965456562a32bce41b.tar.xz cuberite-f622f4317c76aa287649da965456562a32bce41b.tar.zst cuberite-f622f4317c76aa287649da965456562a32bce41b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockHandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Blocks/BlockHandler.cpp b/src/Blocks/BlockHandler.cpp index 4f74e2f45..7fd8c183c 100644 --- a/src/Blocks/BlockHandler.cpp +++ b/src/Blocks/BlockHandler.cpp @@ -41,6 +41,7 @@ #include "BlockIce.h" #include "BlockLadder.h" #include "BlockLeaves.h" +#include "BlockLilypad.h" #include "BlockNewLeaves.h" #include "BlockLever.h" #include "BlockMelon.h" @@ -142,6 +143,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) case E_BLOCK_LAPIS_ORE: return new cBlockOreHandler (a_BlockType); case E_BLOCK_LAVA: return new cBlockLavaHandler (a_BlockType); case E_BLOCK_LEAVES: return new cBlockLeavesHandler (a_BlockType); + case E_BLOCK_LILY_PAD: return new cBlockLilypadHandler (a_BlockType); case E_BLOCK_LIT_FURNACE: return new cBlockFurnaceHandler (a_BlockType); case E_BLOCK_LOG: return new cBlockSidewaysHandler (a_BlockType); case E_BLOCK_MELON: return new cBlockMelonHandler (a_BlockType); |