Fixed solderer recipe conflicts, fixes #832

This commit is contained in:
raoulvdberge
2017-01-07 02:11:48 +01:00
parent c191b41682
commit a51865e5c5
2 changed files with 11 additions and 11 deletions

View File

@@ -17,16 +17,16 @@ public class SoldererRecipeUpgrade implements ISoldererRecipe {
this.result = new ItemStack(RSItems.UPGRADE, 1, type);
this.rows.add(ItemUpgrade.getRequirement(result));
this.rows.add(new ItemStack(RSItems.UPGRADE, 1, 0));
this.rows.add(new ItemStack(Items.REDSTONE));
this.rows.add(new ItemStack(RSItems.UPGRADE, 1, 0));
}
public SoldererRecipeUpgrade(ItemStack result) {
this.result = result;
this.rows.add(ItemUpgrade.getRequirement(result));
this.rows.add(new ItemStack(RSItems.UPGRADE, 1, 0));
this.rows.add(new ItemStack(Items.REDSTONE));
this.rows.add(new ItemStack(RSItems.UPGRADE, 1, 0));
}
@Override

View File

@@ -328,27 +328,27 @@ public class ProxyCommon {
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.GRID, 1, EnumGridType.CRAFTING.getId()),
500,
new ItemStack(Blocks.CRAFTING_TABLE),
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId()),
new ItemStack(Blocks.CRAFTING_TABLE)
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId())
));
// Pattern Grid
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.GRID, 1, EnumGridType.PATTERN.getId()),
500,
new ItemStack(RSItems.PATTERN),
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId()),
new ItemStack(RSItems.PATTERN)
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId())
));
// Fluid Grid
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.GRID, 1, EnumGridType.FLUID.getId()),
500,
new ItemStack(Items.BUCKET),
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED),
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId()),
new ItemStack(Items.BUCKET)
new ItemStack(RSBlocks.GRID, 1, EnumGridType.NORMAL.getId())
));
// Wireless Grid
@@ -667,8 +667,8 @@ public class ProxyCommon {
API.instance().getSoldererRegistry().addRecipe(API.instance().getSoldererRegistry().createSimpleRecipe(
new ItemStack(RSBlocks.INTERFACE),
200,
new ItemStack(RSBlocks.IMPORTER),
new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC),
new ItemStack(RSBlocks.IMPORTER),
new ItemStack(RSBlocks.EXPORTER)
));
@@ -677,8 +677,8 @@ public class ProxyCommon {
new ItemStack(RSBlocks.FLUID_INTERFACE),
200,
new ItemStack(Items.BUCKET),
new ItemStack(RSBlocks.INTERFACE),
new ItemStack(Items.BUCKET)
new ItemStack(Items.REDSTONE),
new ItemStack(RSBlocks.INTERFACE)
));
// Grid Filter