diff options
author | Mattes D <github@xoft.cz> | 2014-03-07 14:45:45 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-07 14:45:45 +0100 |
commit | c1977035cfa6be57d50ec58aee7b5abe10b79ae7 (patch) | |
tree | 247b57eb23e423f934389190f17b44fdb261b99c /src/Blocks/BlockHandler.cpp | |
parent | Rewound PolarSSL to master branch. (diff) | |
parent | Fix comment (diff) | |
download | cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.gz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.bz2 cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.lz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.xz cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.tar.zst cuberite-c1977035cfa6be57d50ec58aee7b5abe10b79ae7.zip |
Diffstat (limited to 'src/Blocks/BlockHandler.cpp')
-rw-r--r-- | src/Blocks/BlockHandler.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Blocks/BlockHandler.cpp b/src/Blocks/BlockHandler.cpp index 052f88f7a..c5165986c 100644 --- a/src/Blocks/BlockHandler.cpp +++ b/src/Blocks/BlockHandler.cpp @@ -57,6 +57,7 @@ #include "BlockRedstoneLamp.h" #include "BlockRedstoneRepeater.h" #include "BlockRedstoneTorch.h" +#include "BlockTNT.h" #include "BlockSand.h" #include "BlockSapling.h" #include "BlockSideways.h" @@ -185,6 +186,7 @@ cBlockHandler * cBlockHandler::CreateBlockHandler(BLOCKTYPE a_BlockType) case E_BLOCK_TALL_GRASS: return new cBlockTallGrassHandler (a_BlockType); case E_BLOCK_TORCH: return new cBlockTorchHandler (a_BlockType); case E_BLOCK_TRAPDOOR: return new cBlockTrapdoorHandler (a_BlockType); + case E_BLOCK_TNT: return new cBlockTNTHandler (a_BlockType); case E_BLOCK_VINES: return new cBlockVineHandler (a_BlockType); case E_BLOCK_WALLSIGN: return new cBlockSignHandler (a_BlockType); case E_BLOCK_WATER: return new cBlockFluidHandler (a_BlockType); @@ -320,6 +322,14 @@ void cBlockHandler::OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface & +void cBlockHandler::OnCancelRightClick(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace) +{ +} + + + + + void cBlockHandler::ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) { // Setting the meta to a_BlockMeta keeps most textures. The few other blocks have to override this. |