blob: b0c223f296cbb912207c789c25e5f68442f442ed (
plain) (
tree)
|
|
#pragma once
#include "ItemHandler.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);
}
} ;
|