-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Version: xcompcraft-1.7.10-1.0.0-beta3.jar
Modlist: http://pastebin.com/Wj5nRqXV
Either I'm not understanding something, or there's a bug with getting items to work with Minetweaker.
NewDimensions.cfg:
overworldDimensionA { id: 40; type: overworld; seed: -5078770702942333886; spawn:(25, 10, 10)}
item overworldItemA { forDim: overworldDimensionA; displayName: "Adventurer Access Card A"; type: accesscard; colours: [0x5cd65c]; }
According to the documentation on curseforge, the item is registered as "XCompCraft:ItemName", so in Minetweaker, I'm simply trying to print the displayName first, to make sure it works:
NewRecipes.zs:
print(XCompCraft:overworldItemA.displayName);
With that I get back an error:
ERROR: NewRecipes.zs:1: Could not resolve <XCompCraft : overworldItemA>
If I do a /minetweaker names command in-game, this shows up in the minetweaker.log:
XCompCraft:teleporterItem -- Name could not be retrieved due to an error: nil.xcompcraft.util.InvalidTeleporterItemStackException: Teleporter item stack does not have NBT information attached.
So I assume there's some kind of error beyond what I've done.
Thanks.