I've seen custom categories in other mods. I think the game takes the tag in the .recipe file and checks for matches that then show up in the menu for the crafting table that has that tag. I don't know for sure though.
The starbound.log says my player.config.patch has a parsing error at 5:2 but I don't see anything wrong with it and neither does JsonLint. Here is the code: Code: [ { "op": "add", "path": "/defaultBlueprints/tier1/-", "value": { "item" : "pipetable" } } ]
well my other mods worked before I added my own mod, so it has to be this starbound.config. There also might be a player.config.patch in another mod I have that is adding "pipetable" to the same directory.
What does this error mean?: Error loading object '/objects/something.object': (JsonException) No such key in Json::get("image")
I don't see a syntax error, do you see one?: Code: { "objectName" : "something", "printable" : false, "rarity" : "Common", "description" : "I can craft somthing with this table", "shortDescription" : "^green;Some Thing^white;", "subtitle" : "Make something!", "race" : "generic", "category" : "Crafting", "price" : 75, "apexDescription" : "A table for making Something!", "avianDescription" : "A table for making something!", "floranDescription" : "A table for making something!", "glitchDescription" : "A table for making something!", "humanDescription" : "A table for making something!", "hylotlDescription" : "A table for making something!", "novakidDescription" : "A table for making something!", "inventoryIcon" : "somethingicon.png", "orientations" : [ { "duelImage" : "something.png", "flipImages" : true, "imagePosition" : [-8, 0], "frames" : 1, "animationCycle" : 1.0, "spaceScan" : 0.1, "anchors" : ["bottom"] } ] }
Probably in another file. That one looks fine. Notice the error says No such key in Json::get("image")
Here is my .frames file and my player.config.patch file. I need a second pair of eyes... something.frames: Code: { "frameGrid" : { "size" : [32, 16], "dimensions" : [1, 1], "names" : [ [ "default" ] ] } } player.config.patch: Code: [ { "op": "add", "path": "/defaultBlueprints/tier1/-", "value": { "item" : "somthing" } } ]
You know you can edit posts, right? The issue is probably with another file. Find a file that uses "image" somewhere.
The only file that uses "image" is my .object file. EDIT: Well that's silly! The error didn't have anything to do with syntax, I just misspelt "dual" in "dualImage", lol
That is a typo, which is a syntax error. And it dealt with "image". Just goes to show how even the smallest things can break everything.