From f872eb55cc84ddba89238775c42b06ea0c579f54 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Thu, 24 Oct 2024 15:20:50 -0500 Subject: [PATCH] Fix incorrect warning about setting TYPE and MODPACK_PLATFORM (#3122) --- scripts/start-configuration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-configuration b/scripts/start-configuration index 14e6ca98..e6ff2f40 100755 --- a/scripts/start-configuration +++ b/scripts/start-configuration @@ -160,7 +160,7 @@ fi : "${MODPACK_PLATFORM:=${MOD_PLATFORM:-}}" -if [[ $MODPACK_PLATFORM && $TYPE ]]; then +if [[ $MODPACK_PLATFORM && $TYPE && $TYPE != VANILLA ]]; then logWarning "Avoid setting TYPE and MODPACK_PLATFORM" fi