1
0
Fork 0

Fix Pickups of BlockFlower

BlockMeta is handled correctly, when converting to pickups, so flowers
now drops right flower type.
This commit is contained in:
Drahoslav Bednář 2016-02-06 21:56:01 +01:00
parent 6fdd7194c8
commit d85c3590fc
1 changed files with 3 additions and 2 deletions

View File

@ -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