Skip to content

Commit

Permalink
fix Minecraft fabric versioning (#247)
Browse files Browse the repository at this point in the history
* specify fabric loader version

Fabric metadata API no longer supports "latest" so we need to default to a specific version instead.

* update Minecraft version

* remove loader version option
  • Loading branch information
JSaterdalen authored Dec 1, 2023
1 parent 1cc2dfb commit ec07227
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions minecraft-fabric/minecraft-fabric-docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,7 @@
"desc": "Version of Minecraft to install (Oldest fabric version is 1.14)",
"display": "GAME VERSION",
"required": true,
"value": "1.20.1"
},
"loader-version": {
"type": "string",
"desc": "Version of Fabric Loader to install",
"display": "LOADER VERSION",
"required": true,
"value": "latest"
"value": "1.20.2"
},
"ip": {
"type": "string",
Expand Down Expand Up @@ -58,7 +51,7 @@
},
{
"commands": [
"java -jar fabric-installer.jar server -mcversion ${game-version} -loader ${loader-version} -downloadMinecraft -noprofile"
"java -jar fabric-installer.jar server -mcversion ${game-version} -downloadMinecraft -noprofile"
],
"type": "command"
},
Expand Down

0 comments on commit ec07227

Please sign in to comment.