Fix certain item drops (#4536)

* Fix certain item drops

* Revert unwanted changes

* Revert unwanted changes

* Revert change

* Style fixes
This commit is contained in:
Mat
2020-03-23 22:07:08 +02:00
committed by GitHub
parent bff7319622
commit 0d0d019bbe
6 changed files with 51 additions and 12 deletions
+7 -2
View File
@@ -9,9 +9,9 @@
class cBlockRedstoneHandler :
public cClearMetaOnDrop<cBlockHandler>
public cBlockHandler
{
using super = cClearMetaOnDrop<cBlockHandler>;
using super = cBlockHandler;
public:
@@ -46,6 +46,11 @@ public:
return false;
}
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override
{
return cItem(E_ITEM_REDSTONE_DUST, 1, 0);
}
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
{
UNUSED(a_Meta);