use 128MB of memory for server (#1178)

This commit is contained in:
Uriel
2024-09-30 20:34:05 +02:00
committed by GitHub
parent 15264526ce
commit c58209a140

View File

@@ -226,7 +226,7 @@ fn main() -> Result<()> {
.shell()
.command(java_bin.to_str().unwrap())
.current_dir(p)
.args(["-Xmx512M", "-jar", "slimevr.jar", "run"])
.args(["-Xmx128M", "-jar", "slimevr.jar", "run"])
.spawn()
.expect("Unable to start the server jar");