Use a * for the output. So its something along the lines of mods.thermal.induction.remove(<*>);
It's worth noting that removal from the Induction Smelter requires the use of a recipe's inputs as opposed to the much more intuitive outputs.
In the case of trying to remove the recipe for Hardened Glass derived from lead ingots I've tried:
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, allLeadIngots);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, *);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, <*>);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, [<*>]);
mods.thermalexpansion.Smelter.removeRecipe(*,*);
mods.thermalexpansion.Smelter.removeRecipe(<*>,<*>);
mods.thermalexpansion.Smelter.removeRecipe([<*>],[<*>]);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust, leadIngot);
mods.thermalexpansion.Smelter.removeRecipe(<ThermalFoundation:*>,<ThermalFoundation:*>);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, *);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, <*>);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, [<*>]);
mods.thermalexpansion.Smelter.removeRecipe(*,*);
mods.thermalexpansion.Smelter.removeRecipe(<*>,<*>);
mods.thermalexpansion.Smelter.removeRecipe([<*>],[<*>]);
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust, leadIngot);
mods.thermalexpansion.Smelter.removeRecipe(<ThermalFoundation:*>,<ThermalFoundation:*>);
This actually worked for removing the recipe derived from lead dust:
mods.thermalexpansion.Smelter.removeRecipe(allObsidianDust * 4, allLeadDust);
Last edited: