Skip to content

Commit

Permalink
Increase seed oil yield of Harvestcraft peanuts, and tree nuts to be …
Browse files Browse the repository at this point in the history
…slightly more viable oil sources.
  • Loading branch information
Nirek-K committed Feb 12, 2016
1 parent 20ca044 commit f4681d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/forestry/plugins/compat/PluginHarvestCraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ protected void registerRecipes() {
Farmables.farmables.get("farmOrchard").add(new FarmableBasicFruit(cropnutBlock, 7));
}
if (cropnut != null) {
RecipeManagers.squeezerManager.addRecipe(20, new ItemStack[]{cropnut}, Fluids.SEEDOIL.getFluid(3 * seedamount));
RecipeManagers.squeezerManager.addRecipe(20, new ItemStack[]{cropnut}, Fluids.SEEDOIL.getFluid(12 * seedamount));
}
}

Expand All @@ -348,7 +348,7 @@ protected void registerRecipes() {
Farmables.farmables.get("farmOrchard").add(new FarmableBasicFruit(nutBlock, 2));
}
if (nut != null) {
RecipeManagers.squeezerManager.addRecipe(20, new ItemStack[]{nut}, Fluids.SEEDOIL.getFluid(3 * seedamount));
RecipeManagers.squeezerManager.addRecipe(20, new ItemStack[]{nut}, Fluids.SEEDOIL.getFluid(15 * seedamount));
}
}

Expand Down

0 comments on commit f4681d2

Please sign in to comment.