Omnia 1.2.0 running on Windows 10
Hello, when i run Start.bat CMD opens and ask if agree to the EULA. hitting Y and enter creates the eula.txt with eula=true but after that it still only opens to the CMD prompt asking to agree to the EULA. Running the the minecraft_server.1.15.2.JAR starts the server where people can connect but with only a minimal amount of RAM. Below is the contents of Start.bat
@Echo off
echo "Do you agree to the Mojang EULA available at https://account.mojang.com/documents/minecraft_eula ?"
set /p EULA=[y/n]
IF /I "%EULA%" NEQ "y" GOTO END
echo eula=true>eula.txt
:END
java.exe -server -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx6124M -Xms4096M -jar nogui
Hello, when i run Start.bat CMD opens and ask if agree to the EULA. hitting Y and enter creates the eula.txt with eula=true but after that it still only opens to the CMD prompt asking to agree to the EULA. Running the the minecraft_server.1.15.2.JAR starts the server where people can connect but with only a minimal amount of RAM. Below is the contents of Start.bat
@Echo off
echo "Do you agree to the Mojang EULA available at https://account.mojang.com/documents/minecraft_eula ?"
set /p EULA=[y/n]
IF /I "%EULA%" NEQ "y" GOTO END
echo eula=true>eula.txt
:END
java.exe -server -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx6124M -Xms4096M -jar nogui