From 23c8fc65a4b5423e93b03d46d379d324cbcaf55d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A9o=20CIMBARO?= <25774021+DiscowZombie@users.noreply.github.com> Date: Thu, 16 Jun 2022 22:19:04 +0200 Subject: [PATCH] Added support for Pufferfish 1.19 (#1566) * Added support for Pufferfish 1.19 * Update scripts/start-deployPufferfish Co-authored-by: Geoff Bourne * Removed wrong negation Co-authored-by: Geoff Bourne --- scripts/start-deployPufferfish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/start-deployPufferfish b/scripts/start-deployPufferfish index 16a337b2..96f62558 100755 --- a/scripts/start-deployPufferfish +++ b/scripts/start-deployPufferfish @@ -8,8 +8,8 @@ isDebugging && set -x IFS=$'\n\t' -if [[ "${MAJOR_VANILLA_VERSION}" != "1.18" ]] && [[ "${MAJOR_VANILLA_VERSION}" != "1.17" ]]; then - log "ERROR: Pufferfish server type only supports versions 1.18 or 1.17, use PUFFERFISH_BUILD to select the the correct build 47 => 1.18.1, 50 => 1.18.2 etc" +if versionLessThan 1.17; then + log "ERROR: Pufferfish server type only supports versions 1.17, 1.18 or 1.19, use PUFFERFISH_BUILD to select the the correct build 47 => 1.18.1, 50 => 1.18.2 etc" exit 1 fi