Resonant machines break zenscript
blockgoblin31 opened this issue ยท 2 comments
Issue description
using the latest releases of crafttweaker, extended crafting, and thermal expansion for 1.12, trying to add the item thermalexpansion:tank.withTag({Fluid:{FluidName:"water",Amount:500000},Level:4b}) or any other item using the tag Level, will cause the loading to fail. I have other nbt tags working, but this one will not. Am i missing something, or will this just not work?(lines 22, 33, 35)
Steps to reproduce
No response
Script used
The crafttweaker.log file
Minecraft version
1.12
Modloader
Forge
Modloader version
14.23.5.2859
CraftTweaker version
CraftTweaker2-1.12-4.1.20.673.jar
Other relevant information
No response
The latest.log file
<thermalexpansion:cell>.withTag({Energy:50000000,Level:"4b"}),
``` is most likely incorrect.
It is probably meant to be:
thermalexpansion:cell.withTag({Energy:50000000,Level:4 as byte}),
But don't use what I just gave, hold the item in your hand, use `/ct hand` and you will get the correct tag that you are meant to use.