summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockFlowerPot.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-07-15 00:59:24 +0200
committerTycho <work.tycho+git@gmail.com>2014-07-15 00:59:24 +0200
commit8fd636aa7235698263e3b85388a4f6373cbedb76 (patch)
tree1650b98907d93b3310ee8acfe76a83bc77b08cb6 /src/Blocks/BlockFlowerPot.h
parentAdded documentation (diff)
downloadcuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar.gz
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar.bz2
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar.lz
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar.xz
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.tar.zst
cuberite-8fd636aa7235698263e3b85388a4f6373cbedb76.zip
Diffstat (limited to '')
-rw-r--r--src/Blocks/BlockFlowerPot.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Blocks/BlockFlowerPot.h b/src/Blocks/BlockFlowerPot.h
index 39fbe1bd9..fc75ef638 100644
--- a/src/Blocks/BlockFlowerPot.h
+++ b/src/Blocks/BlockFlowerPot.h
@@ -9,13 +9,18 @@
class cBlockFlowerPotHandler :
- public cClearMetaOnDrop<cBlockEntityHandler>
+ public cBlockEntityHandler
{
public:
cBlockFlowerPotHandler(BLOCKTYPE a_BlockType) :
- cClearMetaOnDrop<cBlockEntityHandler>(a_BlockType)
+ cBlockEntityHandler(a_BlockType)
{
}
+
+ virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
+ {
+ a_Pickups.push_back(cItem(E_ITEM_FLOWER_POT, 1, 0));
+ }
} ;