[+] Updated modpack launch command

Now the get_sdk_version won't be called on modded servers, preventing a non base 10 error (because the modpack's version name won't be represented as a minecraft version, but as the modpack name itself.
This commit is contained in:
Charles Le Maux 2024-09-19 12:24:56 +02:00
parent 362a079c69
commit 2e6e13a676

View File

@ -36,10 +36,12 @@ class MinecraftServerManager:
" -XX:MaxTenuringThreshold=1 -Daikars.new.flags=true"
" -Dusing.aikars.flags=https://mcutils.com")
java: str = f"/usr/lib/jvm/java-{get_sdk_version(version)}-openjdk-amd64/bin/java"
command: str
command = f"{java} -Xmx{memory_size} {reg_flags} -jar {jar_file} --nogui"
if modded:
if not modded:
java: str = f"/usr/lib/jvm/java-{get_sdk_version(version)}-openjdk-amd64/bin/java"
command = f"{java} -Xmx{memory_size} {reg_flags} -jar {jar_file} --nogui"
else:
command = "./start.sh"
process = subprocess.Popen(shlex.split(command), cwd=server_directory, stdin=subprocess.PIPE)