diff --git a/CHANGELOG.md b/CHANGELOG.md index 7de6cbf38..9de36aacd 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Fixed item count going negative in some cases (raoulvdberge) - Fixed Storage Drawer quantities not updating properly on Void Drawers (geldorn) - Fixed Disk Manipulator blocking items transferring in some cases (InusualZ) +- Fixed External Storage crafting recipe not supporting ore dictionary chests (raoulvdberge) - Updated Storage Drawers API (raoulvdberge) ### 1.1.3 diff --git a/src/main/java/refinedstorage/proxy/CommonProxy.java b/src/main/java/refinedstorage/proxy/CommonProxy.java index 592398c57..ca8e7aa78 100755 --- a/src/main/java/refinedstorage/proxy/CommonProxy.java +++ b/src/main/java/refinedstorage/proxy/CommonProxy.java @@ -323,17 +323,17 @@ public class CommonProxy { ); // External Storage - GameRegistry.addRecipe(new ItemStack(RSBlocks.EXTERNAL_STORAGE), + GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.EXTERNAL_STORAGE), "CED", "HMH", "EPE", 'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON), - 'H', new ItemStack(Blocks.CHEST), + 'H', "chest", 'C', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION), 'D', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_DESTRUCTION), 'M', new ItemStack(RSBlocks.CABLE), 'P', new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_IMPROVED) - ); + )); // Importer GameRegistry.addShapelessRecipe(new ItemStack(RSBlocks.IMPORTER),