2012-10-01 14:08:15 -07:00
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
2012-10-01 14:08:15 -07:00
|
|
|
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "BlockHandler.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockGlowstoneHandler :
|
|
|
|
public cBlockHandler
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockGlowstoneHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-10-01 14:08:15 -07:00
|
|
|
// Reset meta to 0
|
|
|
|
// TODO: More drops?
|
|
|
|
a_Pickups.push_back(cItem(E_ITEM_GLOWSTONE_DUST, 1, 0));
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
2012-10-01 14:08:15 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|