From b18b37a1d30d3ba8dafde701d424994589da62b7 Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Mon, 5 Jun 2017 01:30:28 +0200 Subject: [PATCH] The Machine Casing now requires 1 piece of stone in the middle --- CHANGELOG.md | 1 + .../raoulvdberge/refinedstorage/proxy/ProxyCommon.java | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a9f4e6a..74cdc6059 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Fixed bug where the GUI didn't close when a block is broken, causing a dupe bug with the Portable Grid (raoulvdberge) - Added support for External Storage on Interfaces and other Refined Storage blocks, so you can keep items in stock easier (raoulvdberge) - You now have to sneak to place the Portable Grid in the world (raoulvdberge) +- The Machine Casing now requires 1 piece of stone in the middle (raoulvdberge) ### 1.4.10 - Improved performance of network scanning (raoulvdberge) diff --git a/src/main/java/com/raoulvdberge/refinedstorage/proxy/ProxyCommon.java b/src/main/java/com/raoulvdberge/refinedstorage/proxy/ProxyCommon.java index 588d1cf22..7c4df6346 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/proxy/ProxyCommon.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/proxy/ProxyCommon.java @@ -250,12 +250,13 @@ public class ProxyCommon { ); // Machine Casing - GameRegistry.addRecipe(new ItemStack(RSBlocks.MACHINE_CASING), + GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.MACHINE_CASING), "EEE", - "E E", + "ESE", "EEE", - 'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON) - ); + 'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON), + 'S', "stone" + )); // Construction Core GameRegistry.addShapelessRecipe(new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION),