basic worktable dosn't seen to be working
Nathan22211 opened this issue ยท 14 comments
I used the same craft tweaker script with the fix to the ore driect and it isn't showing in JEi
Forge: 14.23.1.2594
Artisan Worktables: 1.9.17
Athenaeum: 1.5.3
CraftTweaker: 4.1.0
JEI: 4.8.5.147
PrimalCore: 0.6.17
Using script:
import mods.artisanworktables.Worktable;
Worktable.createRecipeBuilder("basic")
.setShaped([
[<ore:logWood>, <ore:nuggetIron>, <ore:logWood>],
[<ore:plankWood>, null, <ore:plankWood>],
[<ore:logWood>, <ore:plankWood>, <ore:logWood>]])
.setTool(<primal:flint_saw>, 12)
.addOutput(<minecraft:chest>)
.create();
Tell me what versions you are using. Also, post a link to your crafttweaker.log
file. Post it as a gist or on pastebin, don't paste it as a comment here.
and here's the log
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Building registry
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Successfully built item registry
[INITIALIZATION][CLIENT][INFO] Loading scripts
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: test.zs}
[POSTINITIALIZATION][CLIENT][INFO] Altering RecipeWorktable Recipe(s) for "basic"
[SERVER_STARTED][CLIENT][INFO] Fixed the RecipeBook
Try updating CraftTweaker to the latest version.
Can you show me the script you are using?
this is what I used
Worktable.addRecipeShaped("basic", <minecraft:chest>, <primal:flint_saw>, 12, true, [
[<ore:logWood>, <ore:nuggetIron>, <ore:logWood],
[<ore:plankWood>, null, <ore:plankWood>],
[<ore:logWood>, <ore:plankWood>, <ore:logWood>]]);
let me see if it works in the table might be a bug with JEI
Ok, I was able to reproduce the issue. It's because your script is missing one of these >
.
The parsing and reporting of errors like that is done in CraftTweaker and is, unfortunately, out of my control.