summaryrefslogtreecommitdiffstats
path: root/source/Items/ItemHandler.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
committerMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
commitaa2edeae7754b6543cc0bd5a234f15d395da4c67 (patch)
treeef92d1a6f215c15deffc8f41139bdc8b3ccf26d5 /source/Items/ItemHandler.cpp
parentMerge pull request #175 from tigerw/bugfixes (diff)
parentMultiple fixes [SEE DESC] (diff)
downloadcuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.gz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.bz2
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.lz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.xz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.zst
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.zip
Diffstat (limited to 'source/Items/ItemHandler.cpp')
-rw-r--r--source/Items/ItemHandler.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/Items/ItemHandler.cpp b/source/Items/ItemHandler.cpp
index 08a7b661d..3c2fa1e79 100644
--- a/source/Items/ItemHandler.cpp
+++ b/source/Items/ItemHandler.cpp
@@ -31,11 +31,9 @@
#include "ItemShears.h"
#include "ItemShovel.h"
#include "ItemSign.h"
-#include "ItemSlab.h"
#include "ItemSpawnEgg.h"
#include "ItemSugarcane.h"
#include "ItemSword.h"
-#include "ItemWood.h"
#include "../Blocks/BlockHandler.h"
@@ -143,18 +141,6 @@ cItemHandler *cItemHandler::CreateItemHandler(int a_ItemType)
return new cItemSwordHandler(a_ItemType);
}
- case E_BLOCK_STONE_SLAB:
- case E_BLOCK_WOODEN_SLAB:
- {
- return new cItemSlabHandler(a_ItemType);
- }
-
- case E_BLOCK_LOG:
- case E_BLOCK_PLANKS:
- {
- return new cItemWoodHandler(a_ItemType);
- }
-
case E_ITEM_BUCKET:
case E_ITEM_WATER_BUCKET:
case E_ITEM_LAVA_BUCKET: