change false to true as default for kick-when-online option

This commit is contained in:
mohammed jasem alaajel 2023-08-31 14:32:51 +04:00 committed by mohammed jasem alaajel
parent a2f1ec22c6
commit 6d40c1902a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public interface ConfigLoader {
final boolean useSSL = node.getNode("useSSL").getBoolean(false);
final boolean overrideBungeeCommands = node.getNode("override-bungee-commands").getBoolean(false);
final boolean registerLegacyCommands = node.getNode("register-legacy-commands").getBoolean(false);
final boolean kickWhenOnline = node.getNode("kick-when-online").getBoolean(false);
final boolean kickWhenOnline = node.getNode("kick-when-online").getBoolean(true);
String redisPassword = node.getNode("redis-password").getString("");
String redisUsername = node.getNode("redis-username").getString("");
String proxyId = node.getNode("proxy-id").getString("test-1");