updates to versions

This commit is contained in:
2023-11-10 13:56:33 -08:00
parent 25a1d1e4b4
commit 1c1ca09596
11 changed files with 64 additions and 117 deletions

13
fabric/run.sh Normal file
View File

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