The server seems to be working fine but there are lots of errors, basically Java exceptions (I run it server side with openjdk-11, client side jre8).
People don't seem to have problems, but my suspicion is they might affect or deactivate otherwise good mods.
This is my first post, excuse me for breaking any conventions.
Startup paste client side (MultiMC):
https://paste.ee/p/CWyvU
Server start log:
http://ftb.oakheim.com/paste.txt
^ started up an nginx webserver real quick since it was too large for paste.ee or pastebin
I'm using the usual startup script with the following content:
Apprecite your help, stay healthy.
Kind regards
People don't seem to have problems, but my suspicion is they might affect or deactivate otherwise good mods.
This is my first post, excuse me for breaking any conventions.
Startup paste client side (MultiMC):
https://paste.ee/p/CWyvU
Server start log:
http://ftb.oakheim.com/paste.txt
^ started up an nginx webserver real quick since it was too large for paste.ee or pastebin
I'm using the usual startup script with the following content:
Bash:
#!/bin/sh
if ! grep -q "eula=true" eula.txt; then
echo "Do you agree to the Mojang EULA available at https://account.mojang.com/documents/minecraft_eula ?"
read -n 1 -p "[y/n] " EULA
if [ "$EULA" = "y" ]; then
echo "eula=true" > eula.txt
echo
fi
fi
java -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx5120M -Xms4096M -jar forge-1.15.2-31.2.33.jar nogui
Apprecite your help, stay healthy.
Kind regards