Respect naming conventions in MultipleFileSelection.md

This commit is contained in:
J. Fronny 2021-09-15 18:59:10 +00:00
parent c59601c646
commit 15775448ff
1 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ You will need to navigate to the file you would like to toggle inside your resou
### Examples:
`texture.png` would be `texture.png.rpo`<br>
`SomeRecipe.json` would be `SomeRecipe.json.rpo`
`some_recipe.json` would be `some_recipe.json.rpo`
<br>
### `.rpo` explaination :
@ -28,7 +28,7 @@ This is your first `.rpo` with your first file
```json
{
"condition": "<your pack id>:<your entry>",
"fallback": "path/to/second.rpo"
"fallback": "path/to/second.json/.png"
}
```
@ -47,14 +47,14 @@ This is your second `.rpo` with your second file
```json
{
"condition": "ExamplePack:option_one",
"fallback": "path/to/secondfile.rpo"
"condition": "examplePack:option_one",
"fallback": "path/to/secondfile.json"
}
```
```json
{
"condition": "ExamplePack:option_two",
"condition": "examplePack:option_two",
"fallback": "path/to/thirdfile.json"
}
```