Disable GUI check as there are sometimes when this will trigger even with a console (such as in an IDE).

This commit is contained in:
md_5 2015-09-02 07:33:17 +10:00
parent 190add0752
commit 1847da75fe

View file

@ -76,7 +76,7 @@ public class Builder
public static void main(String[] args) throws Exception
{
if ( System.console() == null )
if ( false && System.console() == null )
{
JFrame jFrame = new JFrame();
jFrame.setTitle( "SpigotMC - BuildTools" );