Fixed External Storage crafting recipe not supporting ore dictionary chests, fixes #457
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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),
|
||||||
|
|||||||
Reference in New Issue
Block a user