Does some much needed cleanup, adds the Paper server type and fixes broken downloads
Some checks failed
KnarCraft/Minecraft-Server-Launcher/pipeline/head There was a failure building this commit

This commit is contained in:
2020-08-06 19:55:27 +02:00
parent 9ef314b178
commit 26cc5370e2
30 changed files with 1722 additions and 1557 deletions

View File

@ -0,0 +1,16 @@
package net.knarcraft.minecraftserverlauncher.userinterface;
public class FakeGUI extends MessageHandler implements GUI {
/***
* Initializes a new fake gui
*/
public FakeGUI() {
super(true);
}
@Override
public void printMessageToGUI(String message) {
System.out.println(message);
}
}