Skip to content

Commit

Permalink
Remove #forge:seeds seed oil recipe (#2041)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Sep 30, 2024
1 parent 45a4800 commit ce28829
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import net.minecraft.world.level.block.Blocks;
import net.minecraftforge.common.Tags;

import java.util.function.Consumer;

Expand Down Expand Up @@ -485,9 +484,19 @@ public static void init(Consumer<FinishedRecipe> provider) {
.outputFluids(Helium.getFluid(200))
.duration(64).EUt(64).save(provider);

EXTRACTOR_RECIPES.recipeBuilder("seed_oil_from_tag_seeds")
// Disabling because it conflicts with the below recipes
// Pack devs should make their own recipes instead
/*
* EXTRACTOR_RECIPES.recipeBuilder("seed_oil_from_tag_seeds")
* .duration(32).EUt(2)
* .inputItems(Tags.Items.SEEDS)
* .outputFluids(SeedOil.getFluid(10))
* .save(provider);
*/

EXTRACTOR_RECIPES.recipeBuilder("seed_oil_from_wheat_seeds")
.duration(32).EUt(2)
.inputItems(Tags.Items.SEEDS)
.inputItems(new ItemStack(Items.WHEAT_SEEDS))
.outputFluids(SeedOil.getFluid(10))
.save(provider);

Expand Down

0 comments on commit ce28829

Please sign in to comment.