aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-02-20 18:08:30 +0100
committer zaaarf <zaaarf@proton.me>2023-02-20 18:08:30 +0100
commitb9e1057c6aee40ae27b3d09f1b9f460eab018916 (patch)
treea79f39cba62ff0fdba016541fb5798462d9dccda
parentb484c6ddcd1161526982ffbf0c3dcc091be8067a (diff)
doc: made json instructions less janky
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index e11fd8f..44782ff 100644
--- a/README.md
+++ b/README.md
@@ -31,8 +31,12 @@ This plugin only recognises patches written using `IInjector` from the [Lillero]
Right now the only way to include this loader in your Minecraft instance is to modify the launch profile adding it to the loaded classes.
### MultiMC / PolyMC / PrismLauncher
-Edit your target instance and go into "Versions". Select "Forge", click "Customize" and then "Edit". A text editor should open on a json file. Inside the `libraries` array add the following objects:
+Select and edit your target instance and go into the "Version" tab. Click "Add empty", put "Lillero" as name and "ftbsc.lll" as uid. A new library will appear. Select it, press "Edit", and your text editor of choice will open. Replace the contents with:
+
```json
+{
+ "formatVersion": 1,
+ "libraries": [
{
"downloads": {
"artifact": {
@@ -52,7 +56,12 @@ Edit your target instance and go into "Versions". Select "Forge", click "Customi
}
},
"name": "ftbsc.lll:loader:0.1.2"
- },
+ }
+ ],
+ "name": "Lillero",
+ "uid": "ftbsc.lll",
+ "version": "1"
+}
```