Skip to content

Commit 6ab8656

Browse files
Merge pull request #18 from VMan-2002/patch-1
Update 02-05-adding-variations-to-existing-songs.md
2 parents f5e6017 + 7c031ee commit 6ab8656

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/02-custom-songs-and-custom-levels/02-05-adding-variations-to-existing-songs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ Create a `_merge` folder in your mod folder, then create a file within that dire
6767
Then we apply a simple patch, which adds a new value to the `playData.songVariations` array. Edit the JSON file and add these contents:
6868

6969
```json
70-
{
71-
{ "op": "add", "path": "/playData/songVariations/-", "value": "erect" }, // Add a new value erect to the end of the songVariations array.
72-
}
70+
[
71+
{ "op": "add", "path": "/playData/songVariations/-", "value": "erect" } // Add a new value erect to the end of the songVariations array.
72+
]
7373
```
7474

7575
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.

0 commit comments

Comments
 (0)