Integrate gtnh mod (#3727)

Co-authored-by: Geoff Bourne <itzgeoff@gmail.com>
This commit is contained in:
Leon Kampwerth
2025-10-31 03:21:22 +01:00
committed by GitHub
parent d56efcd680
commit f62ad37d31
5 changed files with 377 additions and 1 deletions

View File

@@ -190,7 +190,7 @@ if [[ $MODPACK_PLATFORM && $TYPE && $TYPE != VANILLA ]]; then
fi
case "${TYPE^^}" in
AUTO_CURSEFORGE|MODRINTH|CURSEFORGE|FTB|FTBA)
AUTO_CURSEFORGE|MODRINTH|CURSEFORGE|FTB|FTBA|GTNH)
MODPACK_PLATFORM="$TYPE"
;;
esac
@@ -213,6 +213,10 @@ if [[ $MODPACK_PLATFORM ]]; then
exec "$(dirname "$0")/start-deployModrinth" "$@"
;;
GTNH)
exec "$(dirname "$0")/start-deployGTNH" "$@"
;;
*)
logError "Invalid MODPACK_PLATFORM: '$MODPACK_PLATFORM'"
exit 1