2012-07-29 05:07:22 -07:00
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "ItemHandler.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
|
2012-07-29 05:07:22 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
class cItemSaplingHandler : public cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
2012-10-18 12:41:29 -07:00
|
|
|
cItemSaplingHandler(int a_ItemType)
|
|
|
|
: cItemHandler(a_ItemType)
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-29 05:07:22 -07:00
|
|
|
virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-07-29 05:07:22 -07:00
|
|
|
// Only the lowest 3 bits are important
|
|
|
|
return (NIBBLETYPE)(a_ItemDamage & 0x07);
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
2012-07-29 05:07:22 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|