From 476748ac8bf26ddd2b1eb39baa281dc7125a52cb Mon Sep 17 00:00:00 2001 From: "lapayo94@gmail.com" Date: Sat, 1 Sep 2012 21:21:17 +0000 Subject: Implemented: http://www.mc-server.org/support/index.php?do=details&task_id=239&project=2&dev=26 Fixed Bug on build collision git-svn-id: http://mc-server.googlecode.com/svn/trunk@813 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/blocks/BlockRedstoneTorch.h | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'source/blocks/BlockRedstoneTorch.h') 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 -- cgit v1.2.3