From 1cd43cac15459dcf300a1aa0f48b5e933c8a54b3 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 6 Jul 2021 16:48:51 +0900 Subject: [PATCH] screw the isdev thing --- src/net/torvald/terrarum/AppLoader.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/net/torvald/terrarum/AppLoader.java b/src/net/torvald/terrarum/AppLoader.java index 456e89ffd..3e9b17bf5 100644 --- a/src/net/torvald/terrarum/AppLoader.java +++ b/src/net/torvald/terrarum/AppLoader.java @@ -344,14 +344,15 @@ public class AppLoader implements ApplicationListener { } } - if (args.length == 1 && args[0].equals("isdev=true")) { + //if (args.length == 1 && args[0].equals("isdev=true")) { IS_DEVELOPMENT_BUILD = true; // safe area box //KeyToggler.INSTANCE.forceSet(Input.Keys.F11, true); - } - else { - System.err.println("Game not started using DEBUG MODE -- current build of the game will display black screen without debug mode"); - } + //} + //else { + // System.err.println("Game not started using DEBUG MODE -- current build of the game will display black screen without debug mode"); + //} + // set some more configuration vars MULTITHREAD = THREAD_COUNT >= 3 && getConfigBoolean("multithread");