Changed QuantumChest, QuantumTank, and DigitalChest to use readability helpers.
This commit is contained in:
parent
26e71488dd
commit
123c12ae45
1 changed files with 14 additions and 4 deletions
|
@ -22,6 +22,7 @@ import techreborn.init.ModItems;
|
||||||
import techreborn.util.CraftingHelper;
|
import techreborn.util.CraftingHelper;
|
||||||
import techreborn.util.LogHelper;
|
import techreborn.util.LogHelper;
|
||||||
import techreborn.util.RecipeRemover;
|
import techreborn.util.RecipeRemover;
|
||||||
|
import techreborn.items.ItemParts;
|
||||||
|
|
||||||
public class RecipesIC2 {
|
public class RecipesIC2 {
|
||||||
public static ConfigTechReborn config;
|
public static ConfigTechReborn config;
|
||||||
|
@ -391,8 +392,8 @@ public class RecipesIC2 {
|
||||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.quantumChest),
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.quantumChest),
|
||||||
new Object[]
|
new Object[]
|
||||||
{"DCD", "ATA", "DQD",
|
{"DCD", "ATA", "DQD",
|
||||||
'D', new ItemStack(ModItems.parts, 1, 8),
|
'D', ItemParts.getPartByName("dataOrb"),
|
||||||
'C', new ItemStack(ModItems.parts, 1, 40),
|
'C', ItemParts.getPartByName("computerMonitor"),
|
||||||
'A', ModBlocks.HighAdvancedMachineBlock,
|
'A', ModBlocks.HighAdvancedMachineBlock,
|
||||||
'Q', ModBlocks.digitalChest,
|
'Q', ModBlocks.digitalChest,
|
||||||
'T', IC2Items.getItem("teleporter")});
|
'T', IC2Items.getItem("teleporter")});
|
||||||
|
@ -401,8 +402,17 @@ public class RecipesIC2 {
|
||||||
new Object[]
|
new Object[]
|
||||||
{"PPP", "PDP", "PCP",
|
{"PPP", "PDP", "PCP",
|
||||||
'P', "plateSteel",
|
'P', "plateSteel",
|
||||||
'D', new ItemStack(ModItems.parts, 1, 8),
|
'D', ItemParts.getPartByName("dataOrb"),
|
||||||
'C', new ItemStack(ModItems.parts, 1, 40)
|
'C', ItemParts.getPartByName("computerMonitor")
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.digitalChest),
|
||||||
|
new Object[]
|
||||||
|
{"PPP", "PDP", "PCP",
|
||||||
|
'P', "plateAluminum",
|
||||||
|
'D', ItemParts.getPartByName("dataOrb"),
|
||||||
|
'C', ItemParts.getPartByName("computerMonitor")
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue