diff --git a/mpt b/mpt new file mode 100644 index 0000000..c2f6ee6 --- /dev/null +++ b/mpt @@ -0,0 +1,31 @@ +#!/bin/sh +cd "$(dirname "$0")" +case $1 in +install) + if ! [ -d "$HOME/.mpt" ]; + then mkdir $HOME/.mpt + fi + if ! [ -f "$HOME/.mpt/mpt.jar" ]; + then + dl=$(curl https://data.tilera.xyz/file/mpt/mpt-latest) + echo Downloading $dl ... + curl $dl --output $HOME/.mpt/mpt.jar + fi + ;; +*) + if ! [ -d ".mpt" ]; + then mkdir .mpt + fi + if [ -f "$HOME/.mpt/mpt.jar" ]; + then jar=$HOME/.mpt/mpt.jar + elif [ -f ".mpt/mpt.jar" ]; + then jar=.mpt/mpt.jar + else + dl=$(curl https://data.tilera.xyz/file/mpt/mpt-latest) + echo Downloading $dl ... + curl $dl --output .mpt/mpt.jar + jar=.mpt/mpt.jar + fi + java -jar $jar $* + ;; +esac \ No newline at end of file diff --git a/src/modpack.json b/src/modpack.json index ba9e356..c494bcf 100644 --- a/src/modpack.json +++ b/src/modpack.json @@ -2333,7 +2333,7 @@ "options": [ "required", "client", - "required", + "server", "included" ] },