summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockRedstoneTorch.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockRedstoneTorch.h')
-rw-r--r--source/blocks/BlockRedstoneTorch.h24
1 files changed, 2 insertions, 22 deletions
diff --git a/source/blocks/BlockRedstoneTorch.h b/source/blocks/BlockRedstoneTorch.h
index c90e1362d..88e884861 100644
--- a/source/blocks/BlockRedstoneTorch.h
+++ b/source/blocks/BlockRedstoneTorch.h
@@ -8,36 +8,16 @@
-class cBlockRedstoneTorchHandler : public cBlockRedstoneHandler
+class cBlockRedstoneTorchHandler : public cBlockTorchHandler
{
public:
cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
- : cBlockRedstoneHandler(a_BlockID)
+ : cBlockTorchHandler(a_BlockID)
{
}
-
- virtual bool CanBePlacedAt(cWorld *a_World, int a_X, int a_Y, int a_Z, char a_Dir) override
- {
- return cBlockTorchHandler::TorchCanBePlacedAt(a_World, a_X, a_Y, a_Z, a_Dir);
- }
-
-
- virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) override
- {
- char Dir = cTorch::MetaDataToDirection(a_World->GetBlockMeta( a_X, a_Y, a_Z));
- return CanBePlacedAt(a_World, a_X, a_Y, a_Z, Dir);
- }
-
-
virtual int GetDropID(void) override
{
return E_ITEM_REDSTONE_TORCH_ON;
}
-
-
- virtual bool CanBePlacedOnSide() override
- {
- return true;
- }
}; \ No newline at end of file