From 165150a852801b2291106733e4ddaf147d437e9f Mon Sep 17 00:00:00 2001 From: Alan Date: Sun, 21 Jul 2019 07:05:54 -0700 Subject: [PATCH] Fix -version => -mcversion (#352) Fabric's installer uses `-mcversion` to specify the Minecraft version (https://fabricmc.net/wiki/install). The way the command is written right now it will always use the latest version of MC and ignore the `VERSION` specification. --- start-deployFabric | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-deployFabric b/start-deployFabric index 76ff0e66..68b9d38b 100644 --- a/start-deployFabric +++ b/start-deployFabric @@ -50,7 +50,7 @@ if [[ ! -e $installMarker ]]; then tries=3 set +e while ((--tries >= 0)); do - java -jar $FABRIC_INSTALLER server -version $VANILLA_VERSION -downloadMinecraft + java -jar $FABRIC_INSTALLER server -mcversion $VANILLA_VERSION -downloadMinecraft if [[ $? == 0 ]]; then break fi