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.
19 lines
563 B
19 lines
563 B
2 years ago
|
// 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 => {
|
||
2 years ago
|
// Honey
|
||
2 years ago
|
event.removeAll("tconstruct:honey");
|
||
|
event.removeAllTagsFrom("#tconstruct:honey");
|
||
|
event.removeAllTagsFrom("cofh_core:honey");
|
||
2 years ago
|
|
||
|
// Creosote Oil
|
||
|
event.removeAllTagsFrom("thermal:creosote");
|
||
2 years ago
|
});
|