Minecraft Modpack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
563 B

// priority: 0
// TODO: Not sure why, but this doesn't work :(
// onEvent("recipes", event => {
// for (let honey of [ "tconstruct:honey", "cofh_core:honey" ])
// for (let amount of [ 25, 100, 250, 1000 ])
// event.replaceOutput({ }, Fluid.of(honey, amount), Fluid.of("create:honey", amount));
// });
onEvent("fluid.tags", event => {
// Honey
event.removeAll("tconstruct:honey");
event.removeAllTagsFrom("#tconstruct:honey");
event.removeAllTagsFrom("cofh_core:honey");
// Creosote Oil
event.removeAllTagsFrom("thermal:creosote");
});