Skip to content

Commit

Permalink
Merge pull request #438 from pietro-lopes/main
Browse files Browse the repository at this point in the history
fixed sawmill script
  • Loading branch information
whatthedrunk authored Sep 8, 2024
2 parents e41917f + 6aa1d9c commit a553972
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kubejs/server_scripts/Unification/sawing.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ ServerEvents.recipes(allthemods => {
return
}

mekSawing(output.withCount(6), firstIngredient, {chance: 0.25, item: "mekanism:sawdust"}, recipe.getId().split(":")[1])
prodSawing(firstIngredient, output.withCount(6), Item.of("2x productivetrees:sawdust"), recipe.getId().split(":")[1])
mekSawing(output.withCount(6), firstIngredient, {chance: 0.25, item: "mekanism:sawdust"}, recipe.getId().split(":")[0] + "/" + recipe.getId().split(":")[1])
prodSawing(firstIngredient, output.withCount(6), Item.of("2x productivetrees:sawdust"), recipe.getId().split(":")[0] + "/" + recipe.getId().split(":")[1])
})
})

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.


0 comments on commit a553972

Please sign in to comment.