Skip to content

Commit

Permalink
Uncomment this when Hydraulicraft is out
Browse files Browse the repository at this point in the history
  • Loading branch information
ganymedes01 committed Jul 6, 2015
1 parent 3a9c18c commit b3d3052
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/ganymedes01/aobd/recipes/modules/Hydraulicraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,18 @@ private void addWashingRecipe(ItemStack input, ItemStack output, float pressureR
nbt.setFloat("pressureRatio", pressureRatio);
FMLInterModComms.sendMessage("HydCraft", "registerWashingRecipe", nbt);
}
// @Override
// public void initOre(Ore ore) {
// addCrushingRecipe("ore" + ore.name(), getOreStack("chunk", ore, 2), 1.0F);
// addCrushingRecipe("ingot" + ore.name(), getOreStack("dust", ore), 0.5F);
// addWashingRecipe("chunk" + ore.name(), getOreStack("dust", ore), 400F);
// }
//
// private void addCrushingRecipe(String input, ItemStack output, float pressureRatio) {
// HydraulicRecipes.INSTANCE.addCrushingRecipe(new FluidShapelessOreRecipe(output, input).setPressure(pressureRatio).setCraftingTime(200));
// }
//
// private void addWashingRecipe(String input, ItemStack output, float pressureRatio) {
// HydraulicRecipes.INSTANCE.addWasherRecipe(new FluidShapelessOreRecipe(output, input).addFluidInput(new FluidStack(FluidRegistry.WATER, 1000)).setCraftingTime(200));
// }
}

0 comments on commit b3d3052

Please sign in to comment.