diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-10-07 18:21:39 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-10-07 18:21:39 +0200 |
commit | a5e09155c0188472592fe40a46c17b8bdd330ac3 (patch) | |
tree | 9884755eb0a30b7bcd26051a093bf6d83a4e885b /src/Items/ItemHandler.cpp | |
parent | Corrected IsBlockAttachable() in BlockVine.h (diff) | |
download | cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar.gz cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar.bz2 cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar.lz cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar.xz cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.tar.zst cuberite-a5e09155c0188472592fe40a46c17b8bdd330ac3.zip |
Diffstat (limited to 'src/Items/ItemHandler.cpp')
-rw-r--r-- | src/Items/ItemHandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Items/ItemHandler.cpp b/src/Items/ItemHandler.cpp index 912dde022..9f6a751ef 100644 --- a/src/Items/ItemHandler.cpp +++ b/src/Items/ItemHandler.cpp @@ -572,6 +572,8 @@ bool cItemHandler::CanHarvestBlock(BLOCKTYPE a_BlockType) case E_BLOCK_COBBLESTONE: case E_BLOCK_COBBLESTONE_STAIRS: case E_BLOCK_COBBLESTONE_WALL: + case E_BLOCK_COBWEB: + case E_BLOCK_DEAD_BUSH: case E_BLOCK_DIAMOND_BLOCK: case E_BLOCK_DIAMOND_ORE: case E_BLOCK_DOUBLE_NEW_STONE_SLAB: @@ -587,6 +589,7 @@ bool cItemHandler::CanHarvestBlock(BLOCKTYPE a_BlockType) case E_BLOCK_IRON_TRAPDOOR: case E_BLOCK_LAPIS_BLOCK: case E_BLOCK_LAPIS_ORE: + case E_BLOCK_LEAVES: case E_BLOCK_LIT_FURNACE: case E_BLOCK_MOB_SPAWNER: case E_BLOCK_MOSSY_COBBLESTONE: @@ -594,6 +597,7 @@ bool cItemHandler::CanHarvestBlock(BLOCKTYPE a_BlockType) case E_BLOCK_NETHER_BRICK_STAIRS: case E_BLOCK_NETHER_BRICK_FENCE: case E_BLOCK_NETHERRACK: + case E_BLOCK_NEW_LEAVES: case E_BLOCK_NEW_STONE_SLAB: case E_BLOCK_OBSIDIAN: case E_BLOCK_PACKED_ICE: |