From 0f2f5900203bdee491abe6577bf085e9a4b6e1ea Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Tue, 12 Apr 2016 20:52:45 +0200 Subject: [PATCH] Recipe for crafting monitor --- src/main/java/refinedstorage/proxy/CommonProxy.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/main/java/refinedstorage/proxy/CommonProxy.java b/src/main/java/refinedstorage/proxy/CommonProxy.java index 674eb0c1c..3cfd6af4b 100755 --- a/src/main/java/refinedstorage/proxy/CommonProxy.java +++ b/src/main/java/refinedstorage/proxy/CommonProxy.java @@ -131,14 +131,12 @@ public class CommonProxy { // Construction Core GameRegistry.addShapelessRecipe(new ItemStack(RefinedStorageItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION), - new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON), new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), new ItemStack(Items.glowstone_dust) ); // Destruction Core GameRegistry.addShapelessRecipe(new ItemStack(RefinedStorageItems.CORE, 1, ItemCore.TYPE_DESTRUCTION), - new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON), new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), new ItemStack(Items.quartz) ); @@ -414,6 +412,17 @@ public class CommonProxy { SoldererRegistry.addRecipe(new SoldererRecipeCraftingCPU(EnumCraftingCPUType.TYPE_16K, ItemStoragePart.TYPE_16K)); SoldererRegistry.addRecipe(new SoldererRecipeCraftingCPU(EnumCraftingCPUType.TYPE_64K, ItemStoragePart.TYPE_64K)); + // Crafting Monitor + GameRegistry.addRecipe(new ItemStack(RefinedStorageBlocks.CRAFTING_MONITOR), + "EGE", + "GMG", + "EPE", + 'E', new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON), + 'M', new ItemStack(RefinedStorageBlocks.MACHINE_CASING), + 'G', new ItemStack(Blocks.glass), + 'P', new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_IMPROVED) + ); + // Interface SoldererRegistry.addRecipe(new SoldererRecipeInterface()); }