Tutorial Basic Patching Now With Path Guide [v1.9]

Discussion in 'Starbound Modding' started by The | Suit, Sep 19, 2014.

  1. davoker

    davoker Cosmic Narwhal

    I think there is a little problem when you patch over something already patched, let's say you want to change the name to a label of a file that is already .patch (that is already patched), if you use the online application to patch, the result you have in the "path" is wrong, this is what you get

    Code:
    [
      {
        "op": "replace",
        "path": "/0/value",
        "value": "any name"
      }
    ]
    And this is what it should look like

    Code:
    [
      {
        "op": "replace",
        "path": "/customCollectionsTitle",
        "value": "any name"
      }
    ]
    This would be the original code (the fragment where the name you want to change is)

    Code:
    {
        "op": "add",
        "path": "/customCollectionsTitle",
        "value": "Custom Collections"
      }
    As an example I have used Custom Collections UI as if I wanted to rename it, the path "/0/value" of the result is incorrect and is not recognized.

    This only happens when you want to patch over something that is already patched.
     

Share This Page