diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-18 10:24:34 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-18 10:24:34 +0200 |
commit | 547c34132530a4dba841879595bd0762ef52a22d (patch) | |
tree | 8c9f14efe8e313244c0dc7a69e5e1952fc3da384 /source/Blocks/BlockHandler.cpp | |
parent | Extended the cloc stats for the entire project (diff) | |
download | cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar.gz cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar.bz2 cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar.lz cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar.xz cuberite-547c34132530a4dba841879595bd0762ef52a22d.tar.zst cuberite-547c34132530a4dba841879595bd0762ef52a22d.zip |
Diffstat (limited to 'source/Blocks/BlockHandler.cpp')
-rw-r--r-- | source/Blocks/BlockHandler.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source/Blocks/BlockHandler.cpp b/source/Blocks/BlockHandler.cpp index 20f42d0c5..a853c6f68 100644 --- a/source/Blocks/BlockHandler.cpp +++ b/source/Blocks/BlockHandler.cpp @@ -56,7 +56,6 @@ #include "BlockCauldron.h"
#include "BlockBrewingStand.h"
#include "BlockCobWeb.h"
-#include "BlockTNT.h"
#include "BlockDeadBush.h"
#include "BlockHopper.h"
@@ -177,7 +176,6 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) case E_BLOCK_STONE_SLAB: return new cBlockSlabHandler (a_BlockType);
case E_BLOCK_SUGARCANE: return new cBlockSugarcaneHandler (a_BlockType);
case E_BLOCK_TALL_GRASS: return new cBlockTallGrassHandler (a_BlockType);
- case E_BLOCK_TNT: return new cBlockTNTHandler (a_BlockType);
case E_BLOCK_TORCH: return new cBlockTorchHandler (a_BlockType);
case E_BLOCK_VINES: return new cBlockVineHandler (a_BlockType);
case E_BLOCK_WALLSIGN: return new cBlockSignHandler (a_BlockType);
|