diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-07-15 00:59:24 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-07-15 00:59:24 +0200 |
commit | 8fd636aa7235698263e3b85388a4f6373cbedb76 (patch) | |
tree | 1650b98907d93b3310ee8acfe76a83bc77b08cb6 /src/Blocks/BlockRedstoneLamp.h | |
parent | Added documentation (diff) | |
download | cuberite-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/BlockRedstoneLamp.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Blocks/BlockRedstoneLamp.h b/src/Blocks/BlockRedstoneLamp.h index 4b0ca5b34..69a2b27c2 100644 --- a/src/Blocks/BlockRedstoneLamp.h +++ b/src/Blocks/BlockRedstoneLamp.h @@ -8,13 +8,18 @@ class cBlockRedstoneLampHandler : - public cClearMetaOnDrop<cBlockHandler> + public cBlockHandler { public: cBlockRedstoneLampHandler(BLOCKTYPE a_BlockType) - : cClearMetaOnDrop<cBlockHandler>(a_BlockType) + : cBlockHandler(a_BlockType) { } + + virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override + { + a_Pickups.push_back(cItem(E_BLOCK_REDSTONE_LAMP_OFF, 1, 0)); + } }; |