Skip to content

Commit

Permalink
fix: fix alex's mobs kangaroo and moose ribs decomposer recipes (remo…
Browse files Browse the repository at this point in the history
…ve nutrients output)
  • Loading branch information
Elenterius committed Aug 1, 2023
1 parent e2f678f commit 23af07d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ private void registerDecomposerRecipesForAlexsMobs(Consumer<FinishedRecipe> cons
DecomposerRecipeBuilder.create().ifModLoaded(AlexsMobs.MODID)
.setIngredient(AMItemRegistry.MOOSE_RIBS)
.addOutput(ModItems.FLESH_BITS.get(), 2, 4).addOutput(ModItems.ELASTIC_FIBERS.get(), 1, 2)
.addOutput(ModItems.BONE_FRAGMENTS.get(), 2, 5).addOutput(ModItems.NUTRIENTS.get(), 0, 1)
.addOutput(ModItems.BONE_FRAGMENTS.get(), 2, 5)
.unlockedBy(AMItemRegistry.MOOSE_RIBS).save(consumer);

DecomposerRecipeBuilder.create().ifModLoaded(AlexsMobs.MODID)
Expand Down Expand Up @@ -702,7 +702,7 @@ private void registerDecomposerRecipesForAlexsMobs(Consumer<FinishedRecipe> cons
DecomposerRecipeBuilder.create().ifModLoaded(AlexsMobs.MODID)
.setIngredient(AMItemRegistry.KANGAROO_MEAT)
.addOutput(ModItems.FLESH_BITS.get(), 2, 4).addOutput(ModItems.ELASTIC_FIBERS.get(), 1, 2)
.addOutput(ModItems.BONE_FRAGMENTS.get(), 0, 2).addOutput(ModItems.NUTRIENTS.get(), 0, 1)
.addOutput(ModItems.BONE_FRAGMENTS.get(), 0, 2)
.unlockedBy(AMItemRegistry.KANGAROO_MEAT).save(consumer);

DecomposerRecipeBuilder.create().ifModLoaded(AlexsMobs.MODID)
Expand Down

0 comments on commit 23af07d

Please sign in to comment.