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

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

This commit is contained in:
chylex 2022-10-19 04:34:27 +02:00
parent 5f4e7f0280
commit e699513036
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -26,5 +26,6 @@ sealed class JvmArgumentBuilder {
target.Add("-Xms" + basicProperties.InitialHeapMegabytes + "M");
target.Add("-Xmx" + basicProperties.MaximumHeapMegabytes + "M");
target.Add("-Xrs");
}
}