Modding Help Can't figure out recipe, only shows up with admin

Discussion in 'Starbound Modding' started by Silverforte, Mar 14, 2019.

  1. Silverforte

    Silverforte Spaceman Spiff

    I've been pouring over information for two days and doing everything I can think of, including looking at other mods, and I cannot get this recipe patch file to work. I have two crafting stations that I want to show up in inventorstable2. Neither of them do unless I use admin.

    Patch file:


    [
    { "op" : "add", "path" : "/defaultBlueprints/tier1/-", "value" : { "item" : "artifactfstation" } },
    { "op" : "add", "path" : "/defaultBlueprints/tier1/-", "value" : { "item" : "serumlabfstation" } }


    ]

    I have directories in my mod for both work benches and inventorstable2:

    [​IMG]

    I have inside inventorstable 2, the recipes:

    [​IMG]
    -
    This is the recipe code for the serumlabfstation:
    -

    {
    "input" : [
    { "item" : "smoothmetal", "count" : 30 },
    { "item" : "glassmaterial", "count" : 3 }
    ],
    "output" : {
    "item" : "serumlabf",
    "count" : 1
    },
    "groups" : [ "inventorstable2", "craftingstations", "all" ]
    }

    -
    And the code for the artifactfstation:
    -

    {
    "input" : [
    { "item" : "crystalblock", "count" : 30 },
    { "item" : "cobblestonebrick", "count" : 30 },
    { "item" : "silverore", "count" : 10 }
    ],
    "output" : {
    "item" : "artifactforte",
    "count" : 1
    },
    "groups" : [ "inventorstable2", "craftingstations" "all" ]
    }


    When I use /admin, they show up, I can place the stations and use them perfectly fine. The ONLY problem is getting these damn recipes to show up in the crafting station tier 2. I've tried making new characters and using another account. NOTHING works. Can someone please point out what I'm doing wrong?
     
  2. DrPvtSkittles

    DrPvtSkittles Master Astronaut

    Have you added it to player.config.patch? I see your patch file but you've not specified what it is.
     
  3. Silverforte

    Silverforte Spaceman Spiff

    That was the very first thing I said in my post. It doesn't matter, I figured it out.
     
  4. DrPvtSkittles

    DrPvtSkittles Master Astronaut

    Yes but as I said, you didn't specify what patch file it was, I was just making sure it was the right one :)
     

Share This Page