summaryrefslogtreecommitdiffstats
path: root/source/items/ItemSapling.h
blob: 7edbc76c9b79e908e5f5779d7e31285a17e218d5 (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
28

#pragma once

#include "Item.h"





class cItemSaplingHandler : public cItemHandler
{
public:
	cItemSaplingHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{

	}

	virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
	{
		// Only the lowest 3 bits are important
		return (NIBBLETYPE)(a_ItemDamage & 0x07);
	}
} ;