#Remove fluid recipe not working

7 messages · Page 1 of 1 (latest)

covert storm
#

Pretty simply, I want to remove all recipes involving'createbigcannons:molten_steel', and I used this code:

onEvent('recipes', event => {
    event.remove({input:'createbigcannons:molten_steel'})
    event.remove({output:'createbigcannons:molten_steel'})
})

But it isnt working, none of the recipes are removed

carmine pelicanBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

fierce stirrup
#

if the mods that add the recipe types for the fluid dont have KJS compatibility, that wont work
you have to use recipe ID to remove those

stoic lionBOT
#

To find a recipe's ID, turn on advanced tooltips (F3 + H) then hover over the RECIPE OUTPUT in JEI, or the exclamation mark in REI.
You can then use this in any recipe filter:
{id: 'recipe ID here'}
You can use this, for example, to remove specific recipes:
event.remove({id: 'recipe ID here'})

covert storm
#

their recipes were not removed

#

well, I guess i'll try using the ids anyway