summaryrefslogtreecommitdiffstats
path: root/source/items/ItemLeaves.h
blob: 01b090a2f31d7bff7d26a3499c564f6dcd7939b5 (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
27

#pragma once

#include "Item.h"





class cItemLeavesHandler :
	public cItemHandler
{
public:
	cItemLeavesHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{
	}
	
	virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
	{
		return (NIBBLETYPE)(a_ItemDamage & 0x0f) | 0x4;	//0x4 bit set means this is a player-placed leaves block, not to be decayed
	}
} ;