Recipes not showing
BadKaiPanda opened this issue ยท 15 comments
Intro:
Creating a mod pack and recipes not linking with JEI, same as #684
Issue Description:
Recipes created in CT don't show up in JEI on modded items
What happens:
On modded items/Mods it does not show new recipes created with CT
What you expected to happen:
Show the recipes in JEI
Script used (Please Pastebin or gist your script, posting an unpasted or ungist'd script will automatically close this issue):
crafttweaker.log file (Please Pastebin or gist your file, posting an unpasted or ungist'd file will automatically close this issue):
Affected Versions (Do not use "latest"):
- Minecraft: 1.12.2
- Forge:
- Crafttweaker: CraftTweaker2-1.12-4.1.17.jar
- Using a server: Yes
- If yes, does the client have the exact same scripts?
Should have but shouldn't it sync client users can mess with local.
Your most recent log file where the issue was present:
no possible at the mo.
If the recipe you are trying to remove is the only recipe for that item, why not instead just use
recipes.remove(<uncraftingtable:uncrafting_table>);
?
I'm going to need a more concrete answer to if the clients have the same scripts.
Does it work fine in single player?
Yes they are the same but are you saying as a mod pack/server own the scripts are able to be messed with ?
What.
Scripts are not synced from the server to the client, they need to be exactly the same on both sides.
Also does it work in single player?
I updated the script not to use the ore dir and it seems to fixed it, I think the problem was not with your tool but minetweaker as I told it not to use ore in the first place I will pass this on to that dev.
If the recipe you are trying to remove is the only recipe for that item, why not instead just use
recipes.remove(<uncraftingtable:uncrafting_table>);
?
I will give a try with this item at least should fix that but I had a few problems with other mods with it in the past but it's all trial and error at this point thanks for the tip I give it a try soon.
@BadKaiPanda any update?
The uncrafting table one was fixed but I not sure if I am messing up with the code or what but the diamond vanilla pickaxe wont remove, yes both configs are the same
recipes.removeShaped(<minecraft:diamond_pickaxe>, [[<minecraft:diamond>], [<minecraft:diamond>], [<minecraft:diamond>],[null, <minecraft:stick>, null], [null, <minecraft:stick>, null]]); recipes.removeShaped(<minecraft:diamond_pickaxe>, [[<ore:gemDiamond>], [<ore:gemDiamond>], [<ore:gemDiamond>],[null, <ore:stickWood>, null], [null, <ore:stickWood>, null]]);
https://pastebin.com/1jxzCuc4
I have not fully removed the diamond recipe because the recipe I want is already defined in another mod and I really see it pointless having to redefine it, plus the iron pickaxe as removed it's the diamond one that's just not playing ball.
@jaredlll08 still unable to remove the default recipe stated above.
The recipes you just posted are the wrong format, using:
recipes.removeShaped(<minecraft:diamond_pickaxe>, [[<ore:gemDiamond>, <ore:gemDiamond>, <ore:gemDiamond>],[null, <ore:stickWood>, null], [null, <ore:stickWood>, null]]);
I can remove the diamond pickaxe from my game.
If you can't remove other recipes, it is most likely another mod adding the recipe after we remove recipes, which is not something I can fix.
Closing due to no update. How am I meant to know if it's fixed if I don't get told?