1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-05-01 18:34:07 +02:00

Revert "Add JVM argument to disable signal handling to prevent instant termination of Minecraft processes"

This reverts commit e699513036.
This commit is contained in:
chylex 2023-03-30 04:24:02 +02:00
parent 476de00cfd
commit 46dba1a4fa
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -26,6 +26,5 @@ sealed class JvmArgumentBuilder {
// In case of duplicate JVM arguments, typically the last one wins.
target.Add("-Xms" + basicProperties.InitialHeapMegabytes + "M");
target.Add("-Xmx" + basicProperties.MaximumHeapMegabytes + "M");
target.Add("-Xrs");
}
}