Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Help disabling UniDict recipes for Thermal Foundation gears #94

Closed
TheDeviantCrafter opened this issue May 13, 2018 · 3 comments
Closed

Comments

@TheDeviantCrafter
Copy link

I've successfully used the "recipesToRemoveList" section of the config to remove UniDict recipes for Thermal Foundation's dust blend. I'd like to do the same for Thermal Foundation gears, but it doesn't seem to be working.

Specifically, I'd like to remove the recipes for copper, tin, iron and bronze gears. I removed the crafting recipes for all of the gears, and the four I mentioned are the only ones that still have crafting recipes.

This is the relevant section of my config:

S:recipeToRemoveList <
        unidict:dustconstantan_x2_size.2
        unidict:dustinvar_x3_size.3
        unidict:dustbronze_x4_size.4
        unidict:dustelectrum_x2_size.2
	unidict:geariron_x1_shape. a aba a 
	unidict:gearcopper_x1_shape. a aaa a 
	unidict:geartin_x1_shape. a aba a 
	unidict:gearbronze_x1_shape. a aba a 
     >

The four gears are still there, though. Here's a screenshot from JEI:

image

Also, here's the entire config file (changed to a .txt file so Github would support it):

UniDict.txt

What I've tried so far:

All three times the recipes stayed after restarting the pack.

Versions:

Minecraft: 1.12

Forge: 14.23.3.2673

Unidict: 2.5b

@WanionCane
Copy link
Owner

on this case, there is a better alternative for "recipesToRemoveList".

but, only use it if you really want to remove all the gears recipes, checkout this CraftTweaker command:

mods.unidict.removalByKind.get("Crafting").remove("gear");

basically, it is an all in one command, that will remove all "gear" recipes (could be ingot, block, nugget, and so on...).

for a better explanation about what it does, checkout this wiki page.

@Grishord
Copy link

Grishord commented May 23, 2018

Where do we add this line

mods.unidict.removalByKind.get("Crafting").remove("gear");

to make it ignore the gear recipes so we can craft the ones from thermal expansion?

@WanionCane
Copy link
Owner

it is a CraftTweaker command, so you just need to create a .zs script and put it on it.
but, this command will remove all the gear recipes.
also, you forgot to add "quotes" on the "S:recipeToRemoveList" entries that has a space on the end;
it should looks like this:

S:recipeToRemoveList
unidict:dustconstantan_x2_size.2
unidict:dustinvar_x3_size.3
unidict:dustbronze_x4_size.4
unidict:dustelectrum_x2_size.2
"unidict:geariron_x1_shape. a aba a "
"unidict:gearcopper_x1_shape. a aaa a "
"unidict:geartin_x1_shape. a aba a "
"unidict:gearbronze_x1_shape. a aba a "
>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants