#Change Recipe Energy
10 messages · Page 1 of 1 (latest)
you want to shorten all by the same amount?
or set all to the same amount
I could throw together somethin
shorten by same amount/percentage
thx for trying to help
uh i found out how, thx for trying to help tho
ServerEvents.recipes(event => {
event.forEachRecipe({ mod: 'gtceu' }, recipe => {
try {
var newDuration = recipe.get("duration");
recipe.set("duration", newDuration/10);
} catch (err) {
console.log(recipe.id + " has no duration field, skipped.");
}
})
})