Changed recipes of Interface and Disk Drive
This commit is contained in:
@@ -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)
|
- 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)
|
- 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)
|
- 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
|
### 1.4.10
|
||||||
- Improved performance of network scanning (raoulvdberge)
|
- Improved performance of network scanning (raoulvdberge)
|
||||||
|
|||||||
@@ -298,13 +298,15 @@ public class ProxyCommon {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Disk Drive
|
// Disk Drive
|
||||||
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
|
GameRegistry.addRecipe(new ItemStack(RSBlocks.DISK_DRIVE),
|
||||||
new ItemStack(RSBlocks.DISK_DRIVE),
|
"ECE",
|
||||||
500,
|
"EME",
|
||||||
new ItemStack(Blocks.CHEST),
|
"EPE",
|
||||||
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
|
'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON),
|
||||||
new ItemStack(RSBlocks.MACHINE_CASING)
|
'M', new ItemStack(RSBlocks.MACHINE_CASING),
|
||||||
));
|
'C', new ItemStack(Blocks.CHEST),
|
||||||
|
'P', new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED)
|
||||||
|
);
|
||||||
|
|
||||||
// Cable
|
// Cable
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.CABLE, 12),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.CABLE, 12),
|
||||||
@@ -716,9 +718,9 @@ public class ProxyCommon {
|
|||||||
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
|
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
|
||||||
new ItemStack(RSBlocks.INTERFACE),
|
new ItemStack(RSBlocks.INTERFACE),
|
||||||
200,
|
200,
|
||||||
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC),
|
|
||||||
new ItemStack(RSBlocks.IMPORTER),
|
new ItemStack(RSBlocks.IMPORTER),
|
||||||
new ItemStack(RSBlocks.EXPORTER)
|
new ItemStack(RSBlocks.EXPORTER),
|
||||||
|
new ItemStack(RSBlocks.MACHINE_CASING)
|
||||||
));
|
));
|
||||||
|
|
||||||
// Fluid Interface
|
// Fluid Interface
|
||||||
|
|||||||
Reference in New Issue
Block a user