diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-16 17:42:23 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-16 17:42:23 +0100 |
commit | 4e0edc9fa7acca81ad28be3ff7b74d8178b29091 (patch) | |
tree | 5a672dc9a30cee222adc7cc263c0e48d64715640 /src/Blocks/BlockHandler.cpp | |
parent | Remove old debug messages. (diff) | |
download | cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar.gz cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar.bz2 cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar.lz cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar.xz cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.tar.zst cuberite-4e0edc9fa7acca81ad28be3ff7b74d8178b29091.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 aa97b2ca9..5b8effc07 100644 --- a/src/Blocks/BlockHandler.cpp +++ b/src/Blocks/BlockHandler.cpp @@ -6,6 +6,7 @@ #include "../Root.h" #include "../Bindings/PluginManager.h" #include "../Chunk.h" +#include "BlockAnvil.h" #include "BlockBed.h" #include "BlockBrewingStand.h" #include "BlockButton.h" @@ -85,6 +86,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) // Block handlers, alphabetically sorted: case E_BLOCK_ACACIA_WOOD_STAIRS: return new cBlockStairsHandler (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_BIRCH_WOOD_STAIRS: return new cBlockStairsHandler (a_BlockType); case E_BLOCK_BREWING_STAND: return new cBlockBrewingStandHandler (a_BlockType); |