Skip to content

Commit 0741ac8

Browse files
authored
Update 02-05-adding-variations-to-existing-songs.md
1 parent f5e6017 commit 0741ac8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 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-
{
70+
[
7171
{ "op": "add", "path": "/playData/songVariations/-", "value": "erect" }, // Add a new value erect to the end of the songVariations array.
72-
}
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)