Skip to content

Commit

Permalink
Merge pull request #18 from VMan-2002/patch-1
Browse files Browse the repository at this point in the history
Update 02-05-adding-variations-to-existing-songs.md
  • Loading branch information
EliteMasterEric authored Sep 21, 2024
2 parents f5e6017 + 7c031ee commit 6ab8656
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ Create a `_merge` folder in your mod folder, then create a file within that dire
Then we apply a simple patch, which adds a new value to the `playData.songVariations` array. Edit the JSON file and add these contents:

```json
{
{ "op": "add", "path": "/playData/songVariations/-", "value": "erect" }, // Add a new value erect to the end of the songVariations array.
}
[
{ "op": "add", "path": "/playData/songVariations/-", "value": "erect" } // Add a new value erect to the end of the songVariations array.
]
```

The patching system is very flexible; it works on any JSON file (base game or provided by another mod) and has support for advanced behavior. See [Merging Files](10-appending-and-merging-files/10-02-merging-files.md) for more information.
Expand Down

0 comments on commit 6ab8656

Please sign in to comment.