1
0

Merge pull request #1204 from Howaner/Blocks

Fix sapling drop.
This commit is contained in:
Alexander Harkness 2014-07-17 20:40:14 +01:00
commit 4fd9ac60e0

View File

@ -21,7 +21,7 @@ public:
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
// Only the first 2 bits contain the display information, the others are for growing
a_Pickups.push_back(cItem(E_BLOCK_SAPLING, 1, a_BlockMeta & 3));
a_Pickups.push_back(cItem(E_BLOCK_SAPLING, 1, a_BlockMeta & 0x7));
}