3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 21:10:10 +01:00

Added Version startup argument to Main. Thanks cyberdudedk!

Dieser Commit ist enthalten in:
EvilSeph 2011-07-28 00:46:18 -04:00
Ursprung 5b7b46593c
Commit 6b9c7fa678

Datei anzeigen

@ -93,6 +93,8 @@ public class Main {
.describedAs("Yml file");
acceptsAll(asList("nojline"), "Disables jline and emulates the vanilla console");
acceptsAll(asList("v", "version"), "Show the CraftBukkit Version");
}
};
@ -110,6 +112,8 @@ public class Main {
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
} else if (options.has("v")) {
System.out.println(CraftServer.class.getPackage().getImplementationVersion());
} else {
try {
useJline = !"jline.UnsupportedTerminal".equals(System.getProperty("jline.terminal"));