Fix unification breaking Create crushing recipes

main
copygirl 2 years ago
parent 9c28956113
commit eaf5fe6627
  1. 4
      kubejs/server_scripts/unification/simple_unification.js

@ -4,8 +4,8 @@ onEvent("recipes", event => {
for (let material of Object.values(global.unification))
for (let items of Object.values(material))
for (let i = 0; i < items.length; i++) {
event.replaceInput({ }, items[i], items[0]);
event.replaceOutput({ }, items[i], items[0]);
event.replaceInput({ }, items[i], items[0], true);
event.replaceOutput({ }, items[i], items[0], true);
}
});

Loading…
Cancel
Save