structure changes

This commit is contained in:
fithwum
2023-03-20 13:04:13 -07:00
parent 482340bd04
commit c89a985fda
111 changed files with 2 additions and 2 deletions

View File

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