summaryrefslogblamecommitdiffstats
path: root/src/Items/ItemLeaves.h
blob: abe2a76cfaa4072b2133dd97659be6659242b926 (plain) (tree)
1
2
3
4
5
6
7
8
9








                        
                         

                           
                                   
 
       


                                           


         



 
                                                                                                                                                                                                 
         



                                                                                                                                                             
                  





         

#pragma once

#include "ItemHandler.h"





class cItemLeavesHandler:
	public cItemHandler
{
	using Super = cItemHandler;

public:

	cItemLeavesHandler(int a_ItemType):
		Super(a_ItemType)
	{
	}





	virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) override
	{
		return a_Player.PlaceBlock(
			a_PlacePosition,
			static_cast<BLOCKTYPE>(m_ItemType),
			static_cast<NIBBLETYPE>(a_HeldItem.m_ItemDamage | 0x4)  // 0x4 bit set means this is a player-placed leaves block, not to be decayed.
		);
	}
} ;