CraftTweaker

CraftTweaker

151M Downloads

Recipes still exists after reversing fields

Dovahkill opened this issue ยท 2 comments

commented

Resum:

Cannot delete recipe with containing armor or tool in induction smelter (of thermal expansion)
It does it for all craft with a piece of armor, a tool, or a weapon.

Message in game:

image

ZS script:

mods.thermalexpansion.InductionSmelter.removeRecipe(<minecraft:sand>, <minecraft:iron_helmet>);
mods.thermalexpansion.InductionSmelter.removeRecipe(<minecraft:sand>, <minecraft:iron_chestplate>);

I try to revert order argument like this, same message

mods.thermalexpansion.InductionSmelter.removeRecipe(<minecraft:iron_helmet>, <minecraft:sand>);
mods.thermalexpansion.InductionSmelter.removeRecipe(<minecraft:iron_chestplate>, <minecraft:sand>);

CraftTweaker log

crafttweaker.log


Affected Versions:

  • Minecraft: 1.12.2
  • Forge: 14.23.5.2854
  • Crafttweaker: 2-1.12-4.1.20.586
  • Using a server: No
commented

Firstly, this isn't an issue for Crafttweaker, it would be an issue for Modtweaker.

Secondly the error is saying that it tried to remove the recipe you provided, and the reverse of the arguments and no recipe was removed.

This basically means that your recipe is wrong / can't be removed with Modtweaker

commented

OK thanks for your answer. And sorry to have posted under CraftTweaker and not ModTweaker