Comments out SpongeVanilla and SpongeForge for now
All checks were successful
KnarCraft/Minecraft-Server-Launcher/pipeline/head This commit looks good
All checks were successful
KnarCraft/Minecraft-Server-Launcher/pipeline/head This commit looks good
This commit is contained in:
@ -87,8 +87,13 @@ public class ServerTypeHandler {
|
||||
throw new ConfigurationException("Server type configuration file is missing.");
|
||||
}
|
||||
while (file.hasNextLine()) {
|
||||
String nextLine = file.nextLine();
|
||||
if (nextLine.startsWith("#")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
//Splits the next file line into arguments
|
||||
String[] serverTypeInfo = file.nextLine().split(";", -1);
|
||||
String[] serverTypeInfo = nextLine.split(";", -1);
|
||||
|
||||
//Gets list of server versions from file line
|
||||
String[] serverVersions;
|
||||
|
Reference in New Issue
Block a user