Fix certain item drops (#4536)
* Fix certain item drops * Revert unwanted changes * Revert unwanted changes * Revert change * Style fixes
This commit is contained in:
@@ -8,9 +8,9 @@
|
||||
|
||||
|
||||
class cBlockFlowerPotHandler :
|
||||
public cClearMetaOnDrop<cBlockEntityHandler>
|
||||
public cBlockEntityHandler
|
||||
{
|
||||
using super = cClearMetaOnDrop<cBlockEntityHandler>;
|
||||
using super = cBlockEntityHandler;
|
||||
|
||||
public:
|
||||
|
||||
@@ -23,6 +23,15 @@ public:
|
||||
|
||||
|
||||
|
||||
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override
|
||||
{
|
||||
return cItem(E_ITEM_FLOWER_POT, 1, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
|
||||
{
|
||||
UNUSED(a_Meta);
|
||||
|
||||
Reference in New Issue
Block a user