diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-05 15:10:20 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-05 15:10:20 +0100 |
commit | d4a5b16c52c41da59d2fe3405570653521e5d36e (patch) | |
tree | bbfa7b1b0d7101c9bdf98401c87164def39d4eb2 /src/Blocks/BlockHandler.cpp | |
parent | Fixed some gcc warnings in Defines.h. (diff) | |
download | cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.gz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.bz2 cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.lz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.xz cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.tar.zst cuberite-d4a5b16c52c41da59d2fe3405570653521e5d36e.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. |