Skip to content

Commit

Permalink
feat(recipes): nerf Flesh Spike recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Elenterius committed Sep 6, 2023
1 parent 929245d commit 4488aa0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -955,11 +955,11 @@ private void registerBioForgeRecipes(Consumer<FinishedRecipe> consumer) {
.unlockedBy(ModItems.FLESH_BITS.get()).save(consumer);

BioForgeRecipeBuilder.create(ModItems.FLESH_SPIKE.get(), 1)
.addIngredient(ModItems.BONE_FRAGMENTS.get(), 2)
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 2)
.addIngredient(ModItems.FLESH_BITS.get(), 4)
.addIngredient(ModItems.MOB_FANG.get())
.addIngredient(ModItems.TOUGH_FIBERS.get(), 2)
.addIngredient(ModItems.FLESH_BITS.get(), 1)
.setCategory(ModBioForgeTabs.BLOCKS)
.unlockedBy(ModItems.BONE_FRAGMENTS.get()).save(consumer);
.unlockedBy(ModItems.MOB_FANG.get()).save(consumer);

BioForgeRecipeBuilder.create(ModItems.FLESH_FENCE_GATE.get(), 4)
.addIngredient(ModItems.FLESH_BITS.get(), fleshSlabCost)
Expand Down

0 comments on commit 4488aa0

Please sign in to comment.