Fixes #469
This commit is contained in:
parent
a9d814e777
commit
be2a3f4006
3 changed files with 4 additions and 14 deletions
|
@ -165,7 +165,7 @@ public class Core
|
||||||
// RecipeHandler.scanForDupeRecipes();
|
// RecipeHandler.scanForDupeRecipes();
|
||||||
|
|
||||||
// RecipeConfigManager.save();
|
// RecipeConfigManager.save();
|
||||||
recipeCompact.saveMissingItems(configDir);
|
//recipeCompact.saveMissingItems(configDir);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Mod.EventHandler
|
@Mod.EventHandler
|
||||||
|
|
|
@ -2294,8 +2294,8 @@ public class ModRecipes {
|
||||||
RecipeHandler.addRecipe(new CentrifugeRecipe(ItemDusts.getDustByName("cinnabar", 2),
|
RecipeHandler.addRecipe(new CentrifugeRecipe(ItemDusts.getDustByName("cinnabar", 2),
|
||||||
ItemCells.getCellByName("empty"), ItemCells.getCellByName("mercury", 1),
|
ItemCells.getCellByName("empty"), ItemCells.getCellByName("mercury", 1),
|
||||||
ItemDusts.getDustByName("sulfur", 1), null, null, 80, 5));
|
ItemDusts.getDustByName("sulfur", 1), null, null, 80, 5));
|
||||||
RecipeHandler.addRecipe(new CentrifugeRecipe(ItemDusts.getDustByName("flint", 1), null,
|
|
||||||
TechRebornAPI.recipeCompact.getItem("silicondioxideDust"), null, null, null, 160, 5));
|
|
||||||
|
|
||||||
// Deuterium/Tritium
|
// Deuterium/Tritium
|
||||||
RecipeHandler.addRecipe(new CentrifugeRecipe(ItemCells.getCellByName("helium", 16), null,
|
RecipeHandler.addRecipe(new CentrifugeRecipe(ItemCells.getCellByName("helium", 16), null,
|
||||||
|
@ -2810,10 +2810,6 @@ public class ModRecipes {
|
||||||
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialTnt").getItem(), 32),
|
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialTnt").getItem(), 32),
|
||||||
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialDiamond").getItem(), 3),
|
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialDiamond").getItem(), 3),
|
||||||
ItemDusts.getDustByName("darkAshes", 16), 20, 30));
|
ItemDusts.getDustByName("darkAshes", 16), 20, 30));
|
||||||
RecipeHandler.addRecipe(new ImplosionCompressorRecipe(TechRebornAPI.recipeCompact.getItem("coalChunk"),
|
|
||||||
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialTnt").getItem(), 8),
|
|
||||||
TechRebornAPI.recipeCompact.getItem("industrialDiamond"), ItemDusts.getDustByName("darkAshes", 4), 20,
|
|
||||||
30));
|
|
||||||
RecipeHandler.addRecipe(new ImplosionCompressorRecipe(ItemDusts.getDustByName("emerald", 4),
|
RecipeHandler.addRecipe(new ImplosionCompressorRecipe(ItemDusts.getDustByName("emerald", 4),
|
||||||
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialTnt").getItem(), 24),
|
new ItemStack(TechRebornAPI.recipeCompact.getItem("industrialTnt").getItem(), 24),
|
||||||
new ItemStack(Items.emerald, 3), ItemDusts.getDustByName("darkAshes", 12), 20, 30));
|
new ItemStack(Items.emerald, 3), ItemDusts.getDustByName("darkAshes", 12), 20, 30));
|
||||||
|
@ -2999,13 +2995,6 @@ public class ModRecipes {
|
||||||
ItemDusts.getDustByName("aluminum", 2), ItemCells.getCellByName("silicon", 6),
|
ItemDusts.getDustByName("aluminum", 2), ItemCells.getCellByName("silicon", 6),
|
||||||
ItemCells.getCellByName("empty", 9), 520, 120));
|
ItemCells.getCellByName("empty", 9), 520, 120));
|
||||||
|
|
||||||
RecipeHandler
|
|
||||||
.addRecipe(
|
|
||||||
new IndustrialElectrolyzerRecipe(
|
|
||||||
new ItemStack(TechRebornAPI.recipeCompact.getItem("silicondioxideDust").getItem(), 3,
|
|
||||||
0),
|
|
||||||
ItemCells.getCellByName("empty", 2), ItemCells.getCellByName("silicon", 1),
|
|
||||||
ItemCells.getCellByName("empty", 1), null, null, 60, 60));
|
|
||||||
|
|
||||||
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(new ItemStack(Items.dye, 3, 15),
|
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(new ItemStack(Items.dye, 3, 15),
|
||||||
ItemCells.getCellByName("empty", 1), null, ItemCells.getCellByName("calcium", 1), null, null, 20, 106));
|
ItemCells.getCellByName("empty", 1), null, ItemCells.getCellByName("calcium", 1), null, null, 20, 106));
|
||||||
|
|
|
@ -69,6 +69,7 @@ public class RecipeCompact implements IRecipeCompact
|
||||||
recipes.put("reinforcedGlass", new ItemStack(ModBlocks.reinforcedglass));
|
recipes.put("reinforcedGlass", new ItemStack(ModBlocks.reinforcedglass));
|
||||||
recipes.put("compressor", new ItemStack(ModBlocks.Compressor));
|
recipes.put("compressor", new ItemStack(ModBlocks.Compressor));
|
||||||
recipes.put("insulatedGoldCableItem", ItemStandaloneCables.getCableByName("insulatedgold"));
|
recipes.put("insulatedGoldCableItem", ItemStandaloneCables.getCableByName("insulatedgold"));
|
||||||
|
recipes.put("fertilizer", new ItemStack(Items.dye));
|
||||||
inited = false;
|
inited = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue