From 4561b2c22f755cd91009f2d90efa15671db6a15a Mon Sep 17 00:00:00 2001 From: "luksor111@gmail.com" Date: Sat, 29 Dec 2012 11:49:00 +0000 Subject: Cauldrons and Brewing Stands are now placeable Cauldrons can be filled with water and used to fill bottles git-svn-id: http://mc-server.googlecode.com/svn/trunk@1116 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Items/ItemBrewingStand.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 source/Items/ItemBrewingStand.h (limited to 'source/Items/ItemBrewingStand.h') diff --git a/source/Items/ItemBrewingStand.h b/source/Items/ItemBrewingStand.h new file mode 100644 index 000000000..a4fe6bcbe --- /dev/null +++ b/source/Items/ItemBrewingStand.h @@ -0,0 +1,25 @@ + +#pragma once + +#include "ItemHandler.h" + +class cItemBrewingStandHandler : public cItemHandler +{ +public: + cItemBrewingStandHandler(int a_ItemType) + : cItemHandler(a_ItemType) + { + + } + + virtual bool IsPlaceable() override + { + return true; + } + + virtual BLOCKTYPE GetBlockType() override + { + return E_BLOCK_BREWING_STAND; + } + +}; \ No newline at end of file -- cgit v1.2.3