summaryrefslogblamecommitdiffstats
path: root/source/items/ItemLeaves.h
blob: 01b090a2f31d7bff7d26a3499c564f6dcd7939b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 




                  




                            





                                         

                                                                     
          
                                                                                                                                            
          




    

#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
	}
} ;