Modding Help Item name missing error - Fixed. PEBKAC.

Discussion in 'Starbound Modding' started by slowcold, Sep 5, 2017.

  1. slowcold

    slowcold Pangalactic Porcupine

    Just made a new set of armor and all three pieces are throwing up the title error in the log file:

    "
    [Error] Could not load recipe /recipes/anvil2/dhaliti-pressuresuitlegs.recipe: (StarException) Item name missing.
    [04:43:10.024]
    "

    I've made other armor successfully and patched the recipes in (indeed, I copied and modified one of my existings to create the pressure suit) but this error has me confused. Everything it there! No misspellings even.:chrono::fireball:
     
  2. lazarus78

    lazarus78 The Waste of Time

    What does the recipe look like?
     
  3. slowcold

    slowcold Pangalactic Porcupine

    That would help!
    {
    "input" : [ { "item" : "dhaliti-tier3legs", "count" : 1 },
    { "item" : "ff_plastic", "count" : 7 },
    { "item" : "graphene", "count" : 7 },
    { " item" : "battery", "count" : 1 }
    ],
    "duration" : 5,
    "output" : { "item" : "pressuresuitlegs", "count" : 1 },
    "groups" : [ "craftinganvil2", "armours", "all" ]
    }


    Error message in log:

    [Error] Could not load recipe /recipes/anvil2/pressuresuitlegs.recipe: (StarException) Item name missing.
    [11:46:59.615]
     
  4. slowcold

    slowcold Pangalactic Porcupine

    Never mind, I'm an idiot. There's a space between " and item that shouldn't be there. :nope:
     

Share This Page