| 340 | |
| 341 | |
| 342 | void cBlockHandler::ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) |
| 343 | { |
| 344 | // Setting the meta to a_BlockMeta keeps most textures. The few other blocks have to override this. |
| 345 | a_Pickups.push_back(cItem(m_BlockType, 1, a_BlockMeta)); |
| 346 | } |
| 347 | |
| 348 | |
| 349 |