Java 18 support

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2022-03-28 08:10:25 +11:00
parent c9a265249c
commit 9cff7d3ca0

View File

@ -153,8 +153,8 @@ public class Main {
System.err.println("Unsupported Java detected (" + javaVersion + "). This version of Minecraft requires at least Java 17. Check your Java version with the command 'java -version'."); System.err.println("Unsupported Java detected (" + javaVersion + "). This version of Minecraft requires at least Java 17. Check your Java version with the command 'java -version'.");
return; return;
} }
if (javaVersion > 61.0) { if (javaVersion > 62.0) {
System.err.println("Unsupported Java detected (" + javaVersion + "). Only up to Java 17 is supported."); System.err.println("Unsupported Java detected (" + javaVersion + "). Only up to Java 18 is supported.");
return; return;
} }