forked from copygirl/heck
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.
14 lines
486 B
14 lines
486 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 => { |
|
event.removeAll("tconstruct:honey"); |
|
event.removeAllTagsFrom("#tconstruct:honey"); |
|
event.removeAllTagsFrom("cofh_core:honey"); |
|
});
|
|
|