Changed storage crate recipe.

Closes #92.
This commit is contained in:
Ellpeck 2016-05-05 20:52:32 +02:00
parent 06ede0c822
commit 7afa319b5c

View file

@ -106,8 +106,8 @@ public class ItemCrafting{
//Chest To Crate Upgrade
if(ConfigCrafting.CHEST_TO_CRATE_UPGRADE.isEnabled()){
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemChestToCrateUpgrade),
"CWC", "WWW", "CWC",
'C', new ItemStack(Blocks.CHEST),
" W ", "WCW", " W ",
'C', new ItemStack(InitBlocks.blockGiantChest),
'W', "plankWood"));
recipeChestToCrateUpgrade = RecipeUtil.lastIRecipe();
}