Removed main server debug config.

This commit is contained in:
MobiusDev
2017-12-09 21:24:30 +00:00
parent 5b8e5b462d
commit e7ab6986cf
393 changed files with 77 additions and 3640 deletions

View File

@ -419,8 +419,6 @@ public final class Config
public static boolean SKILL_CHECK_ENABLE;
public static boolean SKILL_CHECK_REMOVE;
public static boolean SKILL_CHECK_GM;
public static boolean DEBUG;
public static boolean DEBUG_INSTANCES;
public static boolean HTML_ACTION_CACHE_DEBUG;
public static boolean PACKET_HANDLER_DEBUG;
public static boolean DEVELOPER;
@ -1823,8 +1821,6 @@ public final class Config
SKILL_CHECK_ENABLE = General.getBoolean("SkillCheckEnable", false);
SKILL_CHECK_REMOVE = General.getBoolean("SkillCheckRemove", false);
SKILL_CHECK_GM = General.getBoolean("SkillCheckGM", true);
DEBUG = General.getBoolean("Debug", false);
DEBUG_INSTANCES = General.getBoolean("InstanceDebug", false);
HTML_ACTION_CACHE_DEBUG = General.getBoolean("HtmlActionCacheDebug", false);
PACKET_HANDLER_DEBUG = General.getBoolean("PacketHandlerDebug", false);
DEVELOPER = General.getBoolean("Developer", false);
@ -2883,8 +2879,6 @@ public final class Config
DATAPACK_ROOT = new File(".");
}
DEBUG = ServerSettings.getBoolean("Debug", false);
ACCEPT_NEW_GAMESERVER = ServerSettings.getBoolean("AcceptNewGameServer", true);
LOGIN_TRY_BEFORE_BAN = ServerSettings.getInt("LoginTryBeforeBan", 5);