Quark Oddities

Quark Oddities

22M Downloads

Cannot remove Furnace recipes (Craft Tweaker) 1.12.2

drhaber opened this issue · 5 comments

commented

I am attempting to remove the cooking recipes for the Frog Leg and Crab Leg (want to use a different mod's machine for food cooking)

I have these two lines in a ZS file

furnace.remove(<quark:cooked_crab_leg>);
furnace.remove(<quark:cooked_frog_leg>);

and it fails to remove the recipes from the furnace
with the CT log out putting

[POSTINITIALIZATION][CLIENT][INFO] Removing furnace recipes for: <quark:cooked_frog_leg>
[POSTINITIALIZATION][CLIENT][INFO] 0 recipes removed for: <quark:cooked_frog_leg>
[POSTINITIALIZATION][CLIENT][INFO] Removing furnace recipes for: <quark:cooked_crab_leg>
[POSTINITIALIZATION][CLIENT][INFO] 0 recipes removed for: <quark:cooked_crab_leg>

This is for MC version: 1.12.2
Quark Version: Quark-r1.6-178
CT Version: CraftTweaker2-1.12-4.1.20

commented
commented

Maybe I'm being dense but I found this function in the CT documentation
furnace.remove(IIngredient output)

EDIT:
I also attempted this
furnace.remove(IIngredient output, IIngredient input);

furnace.remove(<quark:cooked_frog_leg>, <quark:frog_leg:*>);
furnace.remove(<quark:cooked_crab_leg>, <quark:crab_leg:*>);

With no success either

commented
commented

The following did not work either

furnace.remove(<quark:frog_leg>);
furnace.remove(<quark:crab_leg>);
commented