Fix launch file

This commit is contained in:
P0nk
2021-09-06 21:42:58 +02:00
parent 958fa657cd
commit 2b52ab90c3
2 changed files with 2 additions and 3 deletions

View File

@@ -189,7 +189,7 @@ To launch the server, you may either:
* If you already have Maven installed, simply run the command "mvn clean install" to create the jar file.
* IntelliJ also comes with built-in Maven support. Open a new terminal window inside IntelliJ, type "mvn clean install" (your command should now be marked green), then Ctrl+Enter to build the jar file.
2. Launch the jar file
* Double click on "launch.bat"
* Double click on "launch.bat" (need to have Java 16 installed)
#### Launch with Docker
1. Start Docker

View File

@@ -1,5 +1,4 @@
@echo off
@title Cosmic
set PATH="C:\Program Files\Java\jdk1.8.0_241\bin";%PATH%
java -Xmx2048m -Dwzpath=wz\ -jar target\Cosmic.jar
java -Xmx2048m -jar target\Cosmic.jar
pause