Prevents jars from being built as part of jar downloading
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:
@ -60,6 +60,9 @@ public final class JarDownloader {
|
||||
continue;
|
||||
}
|
||||
for (String version : type.getVersions()) {
|
||||
if ((type.getName().equals("Spigot") || type.getName().equals("Bukkit")) && version.equals("Latest")) {
|
||||
continue;
|
||||
}
|
||||
gui.setStatus("Downloading " + type.getName() + version + "...");
|
||||
boolean success = type.downloadJar(jarDirectory, version);
|
||||
if (!success) {
|
||||
|
Reference in New Issue
Block a user