This commit is contained in:
fithwum
2023-03-23 14:28:32 -07:00
parent 4941dc2f7d
commit 711c1fc678
86 changed files with 558 additions and 1187 deletions

13
files/run-vanilla.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Copyright (c) 2022 fithwum
# All rights reserved
cd /MCserver
JAR=./MCserver_*.jar
while [ true ]; do
java -Xmx4G -Xms1024M -Xmn1G -jar $JAR nogui
if [ $? -eq 0 ]; then
break
fi
done