summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2016-02-07 15:27:34 +0100
committerTiger Wang <ziwei.tiger@outlook.com>2016-02-07 15:27:34 +0100
commitf76a964f653fcc6119fa5993ef6de617906896ba (patch)
tree738f05749f48c01a2f8d668ec2a2238323ed89c9
parentMerge pull request #2978 from cuberite/checker (diff)
parentFix Pickups of BlockFlower (diff)
downloadcuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar.gz
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar.bz2
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar.lz
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar.xz
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.tar.zst
cuberite-f76a964f653fcc6119fa5993ef6de617906896ba.zip
-rw-r--r--src/Blocks/BlockFlower.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Blocks/BlockFlower.h b/src/Blocks/BlockFlower.h
index 45f39f2be..3340b701f 100644
--- a/src/Blocks/BlockFlower.h
+++ b/src/Blocks/BlockFlower.h
@@ -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