summaryrefslogtreecommitdiffstats
path: root/source/items/ItemLeaves.h
blob: bc15198069cb56f5529b176b9f99c90c505e34d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Item.h"


class cItemLeavesHandler : public cItemHandler
{
public:
	cItemLeavesHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{
	}
	virtual NIBBLETYPE GetBlockMeta(NIBBLETYPE a_ItemMeta) override
	{
		return a_ItemMeta | 0x4;	//0x4 bit set means this is a player places leave
	}
};