CraftTweaker

CraftTweaker

151M Downloads

Issue with Botania Manasteel Helmet

TearfulBobcat66 opened this issue ยท 1 comments

commented

Issue description

When i tried to change the recipe for the Manasteel helmet, crafttweaker couldn't combine iitemstack with iitemstack.

Steps to reproduce

craftingTable.remove(item:botania:manasteel_helmet);

craftingTable.addShaped("manasteel_helmet1", item:botania:manasteel_helmet, [
[item:botania:manasteel_ingot, item:botania:manasteel_ingot, item:botania:manasteel_ingot],
[item:botania:manasteel_ingot, item:botania:manaweave_helmet, ]item:botania:manasteel_ingot,
[item:minecraft:air, item:minecraft:air, item:minecraft:air]
]);

Script used

https://pastebin.com/26djaU9U - Line 714

The crafttweaker.log file

https://pastebin.com/bCJJh3Ls

Minecraft version

1.19

Modloader

Forge

Modloader version

43.4.2

CraftTweaker version

10.1.55

Other relevant information

No response

The latest.log file

Too big for pastebin

commented

on line 716, you placed the ] in the wrong place, this script should work:

craftingTable.addShaped("manasteel_helmet1", <item:botania:manasteel_helmet>, [
    [<item:botania:manasteel_ingot>, <item:botania:manasteel_ingot>, <item:botania:manasteel_ingot>],
    [<item:botania:manasteel_ingot>, <item:botania:manaweave_helmet>, <item:botania:manasteel_ingot>],
    [<item:minecraft:air>, <item:minecraft:air>, <item:minecraft:air>]
]);