diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-28 22:22:29 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-28 22:22:29 +0100 |
commit | efc89b2c430c94de03bdb519470d7cb6c3b5d661 (patch) | |
tree | f9d0450d190d9765458f4a7d6b57668445d0420e /src/Blocks/BlockHandler.cpp | |
parent | Fixed compilation after last PR merge. (diff) | |
download | cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar.gz cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar.bz2 cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar.lz cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar.xz cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.tar.zst cuberite-efc89b2c430c94de03bdb519470d7cb6c3b5d661.zip |
Diffstat (limited to 'src/Blocks/BlockHandler.cpp')
-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..09e00e77d 100644 --- a/src/Blocks/BlockHandler.cpp +++ b/src/Blocks/BlockHandler.cpp @@ -8,6 +8,7 @@ #include "../Chunk.h" #include "BlockAnvil.h" #include "BlockBed.h" +#include "BlockBigFlower.h" #include "BlockBrewingStand.h" #include "BlockButton.h" #include "BlockCactus.h" @@ -89,6 +90,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) case E_BLOCK_ACTIVATOR_RAIL: return new cBlockRailHandler (a_BlockType); case E_BLOCK_ANVIL: return new cBlockAnvilHandler (a_BlockType); case E_BLOCK_BED: return new cBlockBedHandler (a_BlockType); + case E_BLOCK_BIG_FLOWER: return new cBlockBigFlowerHandler (a_BlockType); case E_BLOCK_BIRCH_WOOD_STAIRS: return new cBlockStairsHandler (a_BlockType); case E_BLOCK_BREWING_STAND: return new cBlockBrewingStandHandler (a_BlockType); case E_BLOCK_BRICK_STAIRS: return new cBlockStairsHandler (a_BlockType); |