9dc0e3c233
git-svn-id: http://mc-server.googlecode.com/svn/trunk@704 0a769ca7-a7f5-676a-18bf-c427514a06d6
29 lines
356 B
C++
29 lines
356 B
C++
|
|
#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);
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|