From 947ace31b822ab8aca1186152c564d3d3f4104f1 Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Sat, 30 Jul 2016 01:36:13 +0200 Subject: [PATCH] Changed Relay recipe to use redstone torch instead of Basic Processor --- CHANGELOG.md | 3 ++- src/main/java/refinedstorage/proxy/CommonProxy.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f6db628..2f0da4503 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,8 @@ **Features** - Added config option to set the base energy usage of the Controller (default is 0) -- Added Grid Filter item +- Added Grid Filter item to filter items in any Grid +- Changed Relay recipe to use redstone torch instead of Basic Processor ### 0.8.12 **Bugfixes** diff --git a/src/main/java/refinedstorage/proxy/CommonProxy.java b/src/main/java/refinedstorage/proxy/CommonProxy.java index 2c036b343..8d59052d3 100755 --- a/src/main/java/refinedstorage/proxy/CommonProxy.java +++ b/src/main/java/refinedstorage/proxy/CommonProxy.java @@ -157,9 +157,9 @@ public class CommonProxy { // Relay GameRegistry.addShapelessRecipe(new ItemStack(RefinedStorageBlocks.RELAY), - new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), new ItemStack(RefinedStorageBlocks.MACHINE_CASING), - new ItemStack(RefinedStorageBlocks.CABLE) + new ItemStack(RefinedStorageBlocks.CABLE), + new ItemStack(Blocks.REDSTONE_TORCH) ); // Controller