diff --git a/LaunchServer/source/auth/MySQLSourceConfig.java b/LaunchServer/source/auth/MySQLSourceConfig.java index fb220e3..c8ed5f7 100644 --- a/LaunchServer/source/auth/MySQLSourceConfig.java +++ b/LaunchServer/source/auth/MySQLSourceConfig.java @@ -65,6 +65,7 @@ if (source == null) { // New data source MysqlDataSource mysqlSource = new MysqlDataSource(); mysqlSource.setCharacterEncoding("UTF-8"); + mysqlSource.setUseSSL(false); // Prep statements cache mysqlSource.setPrepStmtCacheSize(250); @@ -79,6 +80,7 @@ mysqlSource.setMaintainTimeStats(false); mysqlSource.setUseUnbufferedInput(false); mysqlSource.setUseReadAheadInput(false); + mysqlSource.setTcpNoDelay(true); // Set credentials mysqlSource.setServerName(address); diff --git a/Launcher/source/client/ClientProfile.java b/Launcher/source/client/ClientProfile.java index 802b9c7..cd468d0 100644 --- a/Launcher/source/client/ClientProfile.java +++ b/Launcher/source/client/ClientProfile.java @@ -206,7 +206,9 @@ MC194("1.9.4", 110), MC1102("1.10.2", 210), MC1112("1.11.2", 316), - MC1122("1.12.2", 340); + MC1122("1.12.2", 340), + MC113("1.13", 393), + MC1131("1.13.1", 401); private static final Map VERSIONS; public final String name; public final int protocol;