I am working on a 1.10.2 modpack were i need to remove all crafting recipes from all the mods and vanilla minecraft. I know how to add crafting recipes and all that but cant find anywhere how to remove. especially not in mass like i am doing. any help with a line of code for craft tweaker or mod tweaker to remove default crafting recipes would be awesome.
-thompsonturkey. environmental botany for fortune realms modded survive and thrive.
In the current version this is broken. Normally you could do things like
recipes.removeShaped(<minecraft:planks:*>);
recipes.removeShapeless(<minecraft:planks:*>);
..etc..
and it would remove all of the recipes that had that result. No longer is this the case.
If that function is restored you could generate a script based on the /minetweaker names output using a regex in something like netbeans or notepad++ where you take each line and add recipes.removeShaped and recipes.removeShapeless for each name.
(as noted above)
and if some are missing you can tweak it in-game using /minetweaker reload until you see that the recipes disappear.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
I am working on a 1.10.2 modpack were i need to remove all crafting recipes from all the mods and vanilla minecraft. I know how to add crafting recipes and all that but cant find anywhere how to remove. especially not in mass like i am doing. any help with a line of code for craft tweaker or mod tweaker to remove default crafting recipes would be awesome.
-thompsonturkey. environmental botany for fortune realms modded survive and thrive.
In the current version this is broken. Normally you could do things like
recipes.removeShaped(<minecraft:planks:*>);
recipes.removeShapeless(<minecraft:planks:*>);
..etc..
and it would remove all of the recipes that had that result. No longer is this the case.
If that function is restored you could generate a script based on the /minetweaker names output using a regex in something like netbeans or notepad++ where you take each line and add recipes.removeShaped and recipes.removeShapeless for each name.
(as noted above)
and if some are missing you can tweak it in-game using /minetweaker reload until you see that the recipes disappear.