#2479: Allow injection of BungeeCord commands to 1.13 with inject_commands option

This commit is contained in:
md_5
2018-12-20 10:33:36 +11:00
parent 7793894621
commit 02a65e34cf
12 changed files with 768 additions and 32 deletions

View File

@@ -5,9 +5,9 @@ public class Bootstrap
public static void main(String[] args) throws Exception
{
if ( Float.parseFloat( System.getProperty( "java.class.version" ) ) < 51.0 )
if ( Float.parseFloat( System.getProperty( "java.class.version" ) ) < 52.0 )
{
System.err.println( "*** ERROR *** BungeeCord requires Java 7 or above to function! Please download and install it!" );
System.err.println( "*** ERROR *** BungeeCord requires Java 8 or above to function! Please download and install it!" );
System.out.println( "You can check your Java version with the command: java -version" );
return;
}