From ba70a151915bb14ddbe0527d8807508000819df6 Mon Sep 17 00:00:00 2001 From: "lapayo94@gmail.com" Date: Mon, 16 Jul 2012 13:30:33 +0000 Subject: Fixed some small bugs :) git-svn-id: http://mc-server.googlecode.com/svn/trunk@672 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/blocks/BlockRedstoneOre.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 source/blocks/BlockRedstoneOre.h (limited to 'source/blocks/BlockRedstoneOre.h') diff --git a/source/blocks/BlockRedstoneOre.h b/source/blocks/BlockRedstoneOre.h deleted file mode 100644 index 5658d76ad..000000000 --- a/source/blocks/BlockRedstoneOre.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once -#include "Block.h" -#include "../MersenneTwister.h" -#include "../cWorld.h" - -class cBlockRedstoneOreHandler : public cBlockHandler -{ -public: - cBlockRedstoneOreHandler(BLOCKTYPE a_BlockID) - : cBlockHandler(a_BlockID) - { - } - - virtual int GetDropID() - { - return E_ITEM_REDSTONE_DUST; - } - - virtual char GetDropCount() - { - MTRand r1; - return 4 + r1.randInt(1); - } - - -}; \ No newline at end of file -- cgit v1.2.3