2012-08-09 04:43:26 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
2012-10-01 17:08:15 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#include "BlockRedstone.h"
|
2012-08-09 04:43:26 -04:00
|
|
|
#include "BlockTorch.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Torch.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
class cBlockRedstoneTorchHandler :
|
|
|
|
public cBlockTorchHandler
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-10-03 04:52:11 -04:00
|
|
|
cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockTorchHandler(a_BlockType)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-01 17:08:15 -04:00
|
|
|
// Always drop the ON torch, meta 0
|
|
|
|
a_Pickups.push_back(cItem(E_ITEM_REDSTONE_TORCH_ON, 1, 0));
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
2012-09-11 08:01:34 -04:00
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 08:01:34 -04:00
|
|
|
{
|
|
|
|
return "step.wood";
|
|
|
|
}
|
2012-10-01 17:08:15 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|