85164fab8e
( http://forum.mc-server.org/showthread.php?tid=434&pid=4734#pid4734 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@917 0a769ca7-a7f5-676a-18bf-c427514a06d6
38 lines
571 B
C++
38 lines
571 B
C++
|
|
#pragma once
|
|
|
|
#include "BlockRedstone.h"
|
|
#include "BlockTorch.h"
|
|
#include "../Torch.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockRedstoneTorchHandler :
|
|
public cBlockTorchHandler
|
|
{
|
|
public:
|
|
cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockTorchHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
{
|
|
// Always drop the ON torch, meta 0
|
|
a_Pickups.push_back(cItem(E_ITEM_REDSTONE_TORCH_ON, 1, 0));
|
|
}
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
|
{
|
|
return "step.wood";
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|