1
0

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
This commit is contained in:
luksor111@gmail.com
2012-12-29 11:49:00 +00:00
parent af7ee903fb
commit 4561b2c22f
9 changed files with 167 additions and 0 deletions

View File

@@ -29,6 +29,8 @@
#include "ItemBed.h"
#include "ItemSpawnEgg.h"
#include "ItemFlowerPot.h"
#include "ItemBrewingStand.h"
#include "ItemCauldron.h"
#include "../Blocks/BlockHandler.h"
@@ -70,6 +72,8 @@ cItemHandler *cItemHandler::CreateItemHandler(int a_ItemType)
// Single item per handler, alphabetically sorted:
case E_ITEM_BED: return new cItemBedHandler(a_ItemType);
case E_ITEM_BREWING_STAND: return new cItemBrewingStandHandler(a_ItemType);
case E_ITEM_CAULDRON: return new cItemCauldronHandler(a_ItemType);
case E_ITEM_DYE: return new cItemDyeHandler(a_ItemType);
case E_ITEM_FLINT_AND_STEEL: return new cItemLighterHandler(a_ItemType);
case E_ITEM_FLOWER_POT: return new cItemFlowerPotHandler(a_ItemType);