Cannot remove Furnace recipes (Craft Tweaker) 1.12.2
drhaber opened this issue · 5 comments
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
That function takes in the item that's being cooked, not the one that's
resulting. You want the IDs for the raw items.
…On Fri, Apr 10, 2020, 15:40 drhaber ***@***.***> wrote:
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
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2027>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AANWFL6SVHX66KZL5A6JJ4TRL4VXDANCNFSM4MFPVSCA>
.
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
That doesn't seem right to me. Furnace recipes are mapped by input. Maybe
it's an error on their end.
…On Fri, Apr 10, 2020, 16:12 drhaber ***@***.***> wrote:
Maybe I'm being dense but I found this function in the CT documentation
<https://docs.blamejared.com/1.12/en/Vanilla/Recipes/Furnace/Recipes_Furnace/>
furnace.remove(IIngredient output)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2027 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AANWFL27NA4FUJGTNVA6PNLRL4ZONANCNFSM4MFPVSCA>
.
The following did not work either
furnace.remove(<quark:frog_leg>);
furnace.remove(<quark:crab_leg>);
That seems odd. Seems like you should ask this to CT. Not sure if you can
get help on 1.12 though.
…On Fri, Apr 10, 2020 at 5:05 PM drhaber ***@***.***> wrote:
The following did not work either
furnace.remove(<quark:frog_leg>);
furnace.remove(<quark:crab_leg>);
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2027 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AANWFLYI3GFULQAFRWE24OLRL47TXANCNFSM4MFPVSCA>
.