From 4df311e639b59aaee5c5fa7209bcb4771d6a2058 Mon Sep 17 00:00:00 2001 From: Buuz135 Date: Wed, 13 Dec 2017 11:12:57 +0100 Subject: [PATCH] Changed the recipe of the StoneWork --- .../tile/block/MaterialStoneWorkFactoryBlock.java | 7 ++++--- .../recipes/material_stonework_factory.json | 9 ++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/buuz135/industrial/tile/block/MaterialStoneWorkFactoryBlock.java b/src/main/java/com/buuz135/industrial/tile/block/MaterialStoneWorkFactoryBlock.java index 2aa27de42..6a6962f16 100644 --- a/src/main/java/com/buuz135/industrial/tile/block/MaterialStoneWorkFactoryBlock.java +++ b/src/main/java/com/buuz135/industrial/tile/block/MaterialStoneWorkFactoryBlock.java @@ -21,14 +21,15 @@ public MaterialStoneWorkFactoryBlock() { } public void createRecipe() { - RecipeUtils.addShapedRecipe(new ItemStack(this), "pip", "ama", "lrw", + RecipeUtils.addShapedRecipe(new ItemStack(this), "pip", "amf", "lrw", 'p', ItemRegistry.plastic, - 'i', Blocks.PISTON, + 'i', Blocks.CRAFTING_TABLE, 'a', Items.IRON_PICKAXE, + 'f', Blocks.FURNACE, 'm', MachineCaseItem.INSTANCE, 'l', Items.LAVA_BUCKET, 'w', Items.WATER_BUCKET, - 'r', Items.REDSTONE); + 'r', ItemRegistry.pinkSlime); } @Override diff --git a/src/main/resources/assets/industrialforegoing/recipes/material_stonework_factory.json b/src/main/resources/assets/industrialforegoing/recipes/material_stonework_factory.json index 97de185ac..95b1e0c71 100644 --- a/src/main/resources/assets/industrialforegoing/recipes/material_stonework_factory.json +++ b/src/main/resources/assets/industrialforegoing/recipes/material_stonework_factory.json @@ -4,7 +4,7 @@ }, "pattern": [ "pip", - "ama", + "amf", "lrw" ], "type": "forge:ore_shaped", @@ -16,13 +16,16 @@ "item": "minecraft:iron_pickaxe" }, "r": { - "item": "minecraft:redstone" + "item": "industrialforegoing:pink_slime" + }, + "f": { + "item": "minecraft:furnace" }, "w": { "item": "minecraft:water_bucket" }, "i": { - "item": "minecraft:piston" + "item": "minecraft:crafting_table" }, "l": { "item": "minecraft:lava_bucket"