Digging up a clay block spawns 4 clay items.
Fixes #1884. Closes #1891.
This commit is contained in:
parent
a41f21f76f
commit
e42beb51ab
@ -55,6 +55,11 @@ public:
|
|||||||
a_Pickups.push_back(cItem(E_ITEM_NETHER_QUARTZ));
|
a_Pickups.push_back(cItem(E_ITEM_NETHER_QUARTZ));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case E_BLOCK_CLAY:
|
||||||
|
{
|
||||||
|
a_Pickups.push_back(cItem(E_ITEM_CLAY, 4));
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
a_Pickups.push_back(cItem(m_BlockType));
|
a_Pickups.push_back(cItem(m_BlockType));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user