Fix Pickups of BlockFlower
BlockMeta is handled correctly, when converting to pickups, so flowers now drops right flower type.
This commit is contained in:
parent
6fdd7194c8
commit
d85c3590fc
@ -18,8 +18,9 @@ public:
|
||||
|
||||
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
||||
{
|
||||
// Reset meta to zero
|
||||
a_Pickups.push_back(cItem(m_BlockType, 1, 0));
|
||||
NIBBLETYPE Meta = a_BlockMeta & 0x7;
|
||||
|
||||
a_Pickups.push_back(cItem(m_BlockType, 1, Meta));
|
||||
}
|
||||
|
||||
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
||||
|
Loading…
Reference in New Issue
Block a user