Changed recipes of Interface and Disk Drive

This commit is contained in:
raoulvdberge
2017-06-05 14:16:27 +02:00
parent b4e7cf9052
commit f6d39472d8
2 changed files with 13 additions and 9 deletions

View File

@@ -8,6 +8,8 @@
- 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)
- Changed recipe of Disk Drive to no longer require a Solderer (raoulvdberge)
- Changed recipe of Interface to no longer require a Basic Processor, but a Machine Casing instead (raoulvdberge)
### 1.4.10
- Improved performance of network scanning (raoulvdberge)

View File

@@ -298,13 +298,15 @@ public class ProxyCommon {
);
// Disk Drive
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.DISK_DRIVE),
500,
new ItemStack(Blocks.CHEST),
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
new ItemStack(RSBlocks.MACHINE_CASING)
));
GameRegistry.addRecipe(new ItemStack(RSBlocks.DISK_DRIVE),
"ECE",
"EME",
"EPE",
'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON),
'M', new ItemStack(RSBlocks.MACHINE_CASING),
'C', new ItemStack(Blocks.CHEST),
'P', new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED)
);
// Cable
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.CABLE, 12),
@@ -716,9 +718,9 @@ public class ProxyCommon {
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.INTERFACE),
200,
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC),
new ItemStack(RSBlocks.IMPORTER),
new ItemStack(RSBlocks.EXPORTER)
new ItemStack(RSBlocks.EXPORTER),
new ItemStack(RSBlocks.MACHINE_CASING)
));
// Fluid Interface