So I have the following code to replace limes in recipes with a tag:
// limes
event.replaceInput(
{ input: 'collectorsreap:lime' }, // Arg 1: the filter
'collectorsreap:lime', // Arg 2: the item to replace
'#collectorsreap:lime_or_slice' // Arg 3: the item to replace it with
)
But I would like to exclude certain recipes, such as collectorsreap:lime_crate and collectorsreap:lime_slice. How can I exclude them from the above code?