Skip to content

Commit

Permalink
fix bonemeal dupe. oopsies
Browse files Browse the repository at this point in the history
  • Loading branch information
thiakil committed Dec 20, 2024
1 parent 6c1a492 commit fb71dbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void addRecipes(RecipeOutput consumer, HolderLookup.Provider registries)
//Bone block -> bone meal
ItemStackToItemStackRecipeBuilder.crushing(
IngredientCreatorAccess.item().from(Blocks.BONE_BLOCK),
new ItemStack(Items.BONE_MEAL, BONEMEAL_FROM_BONE * 3)//vanilla is 3 bone's worth
new ItemStack(Items.BONE_MEAL, 9)//must be the same as vanilla needs to make a block
).build(consumer, Mekanism.rl(basePath + "bone_block"));
//Red Sandstone -> Sand
RecipeProviderUtil.addSandStoneToSandRecipe(consumer, basePath + "red_sandstone_to_sand", null, Blocks.RED_SAND, Tags.Items.SANDSTONE_RED_BLOCKS);
Expand Down

0 comments on commit fb71dbc

Please sign in to comment.