blob: 477cb47b710fb22e9d66158247aec48a6fbccf09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include "BlockHandler.h"
class cBlockBookShelfHandler :
public cBlockHandler
{
public:
cBlockBookShelfHandler(BLOCKTYPE a_BlockType) :
cBlockHandler(a_BlockType)
{
}
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override
{
if ((ItemCategory::IsTool(a_Tool->m_ItemType)) && (ToolHasSilkTouch(a_Tool)))
{
return cItem(m_BlockType, 1);
}
return cItem(E_ITEM_BOOK, 3);
}
};
|