Modding Help What changed!?

Discussion in 'Starbound Modding' started by BitHorizon, Feb 3, 2014.

  1. BitHorizon

    BitHorizon Ketchup Robot

    In all of my mods, every single recipe outputs a perfectly generic item now.
    I've tried to compare them to other mods, and I can't find the problem.
    This is one of my recipes:
    Code:
    {
      "input" : [
        { "item" : "ironbar", "count" : 35 },
        { "item" : "copperarmorchest", "count" : 1 },
        { "item" : "money", "count" : 350 }
      ],
      "output" : { "item" : "halfwarpstier1chest", "count" : 1 },
      "groups" : [ "anvil", "armors", "all" ]
    }
    
    The item "halfwarpstier1chest" is defined by its respective item file:
    Code:
    {
      "itemName" : "halfwarpstier1chest",
      "inventoryIcon" : "icons.png:chest",
      "dropCollision" : [-4.0, -3.0, 4.0, 3.0],
      "maxStack" : 1,
      "rarity" : "Common",
      "description" : "It looks flimsy, but it's laced with iron!",
      "shortdescription" : "Ironweave Tanktop and Gloves",
      "inspectionKind" : "armor",
    
      "maleFrames" : {
        "body" : "chestm.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "femaleFrames" : {
        "body" : "chestf.png",
        "backSleeve" : "bsleeve.png",
        "frontSleeve" : "fsleeve.png"
      },
    
      "statusEffects" : [
        {
          "kind" : "ColdProtection",
          "amount" : "2.5"
        },
    
        {
          "kind" : "Protection",
          "amount" : 7.5
        },
    
        {
          "kind" : "healthincrease",
          "amount" : 15
        }
      ]
    }
    
     
  2. BitHorizon

    BitHorizon Ketchup Robot

    Odd, that didn't break every recipe before Furious Koala.
    Oh, well. Time to go fix tons of recipes.
     
  3. The | Suit

    The | Suit Agent S. Forum Moderator

    Next time just read your starbound.log
    It will tell you the error directly - even which file and which line the error is on
     
  4. BitHorizon

    BitHorizon Ketchup Robot

    Yeah, I do know to check the Starboud.log. I thought it was a problem with the recipe, not the items themselves.
     
  5. The | Suit

    The | Suit Agent S. Forum Moderator

    Maybe its me - but it that statement didn't make any sense.
    starbound.log tells you errors for every file - not just for items.
    Even if your modinfo file had a problem the starbound.log will show it.
     
    Last edited: Feb 3, 2014
  6. BitHorizon

    BitHorizon Ketchup Robot

    I just wasn't looking carefully enough at the log. That's all.
     
  7. intervencion

    intervencion Existential Complex

    Ya' we know :rofl:

    (Maybe Chucklefish will have to put in Comic Sans "no "quote" numbers!" or "Read changelog!" in the banner :rofl:)
     
  8. BitHorizon

    BitHorizon Ketchup Robot

    No.
     

Share This Page