Fixed External Storage crafting recipe not supporting ore dictionary chests, fixes #457

This commit is contained in:
Raoul Van den Berge
2016-10-12 16:04:28 +02:00
parent c4df3fed22
commit 9b4a5b3ece
2 changed files with 4 additions and 3 deletions

View File

@@ -18,6 +18,7 @@
- Fixed item count going negative in some cases (raoulvdberge) - Fixed item count going negative in some cases (raoulvdberge)
- Fixed Storage Drawer quantities not updating properly on Void Drawers (geldorn) - Fixed Storage Drawer quantities not updating properly on Void Drawers (geldorn)
- Fixed Disk Manipulator blocking items transferring in some cases (InusualZ) - 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) - Updated Storage Drawers API (raoulvdberge)
### 1.1.3 ### 1.1.3

View File

@@ -323,17 +323,17 @@ public class CommonProxy {
); );
// External Storage // External Storage
GameRegistry.addRecipe(new ItemStack(RSBlocks.EXTERNAL_STORAGE), GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.EXTERNAL_STORAGE),
"CED", "CED",
"HMH", "HMH",
"EPE", "EPE",
'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON), 'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON),
'H', new ItemStack(Blocks.CHEST), 'H', "chest",
'C', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION), 'C', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION),
'D', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_DESTRUCTION), 'D', new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_DESTRUCTION),
'M', new ItemStack(RSBlocks.CABLE), 'M', new ItemStack(RSBlocks.CABLE),
'P', new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_IMPROVED) 'P', new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_IMPROVED)
); ));
// Importer // Importer
GameRegistry.addShapelessRecipe(new ItemStack(RSBlocks.IMPORTER), GameRegistry.addShapelessRecipe(new ItemStack(RSBlocks.IMPORTER),