https://github.com/mekanism/Mekanism/tree/1.20.x/src/datagen/generated/mekanism/data/mekanism/recipes/factory
i added these to my .forEach((recipeID) => event.remove({id: recipeID})); clause, but they didnt remove the recipes, is there a way i can remove them this way or do i have to do each machine manually?
Also the recipe id's in JEI dont show this route, this is from github
#removing recipes for mekanism factory tiers
10 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
im trying to make it so that you can only upgrade mek machines using the tier installers, which would require removing all the recipes for the tier upgrades
ok so, ive figured out how to disable an entire recipe category (like nucleosynthesizing) but i havent been able to disable a subcategory like what im trying to do here
these two work, but factory doesnt
ignore the first line, thats a different argument
If you want to disable all factory recipes use regex
event.remove({id: /mekanism:factory.*/}) so this will remove any recipe id that starts with mekanism:factory
The reason why the other 2 work is because they are only registering recipes from that recipe type. For the factory recipes there's no recipe type only for recipes, so that doesn't work