From 5f8a9a026da5a334645caf201a992c9af2479d03 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sat, 20 Apr 2024 17:42:51 +0200 Subject: [PATCH] SIMD is always a good idea --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ee5b667..aecf710 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -102,7 +102,7 @@ function check() { # Compile server arguments function compile_args() { echo ":: Compiling server arguments" - export "ARGS=--nogui" + export "ARGS=--nogui --add-modules=jdk.incubator.vector" case "${MCSD_ENFORCE_FRESH_CACHES}" in "true") export "ARGS=${ARGS} --eraseCache"