2
0
MELERIX 14 жил өмнө
parent
commit
f243d5cf4c

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/Config.java

@@ -1133,7 +1133,7 @@ public final class Config
 					MAX_CHARACTERS_NUMBER_PER_ACCOUNT = Integer.parseInt(serverSettings.getProperty("CharMaxNumber", "0"));
 					MAXIMUM_ONLINE_USERS = Integer.parseInt(serverSettings.getProperty("MaximumOnlineUsers", "100"));
 					
-					String[] protocols = serverSettings.getProperty("AllowedProtocolRevisions", "267;268;271").split(";");
+					String[] protocols = serverSettings.getProperty("AllowedProtocolRevisions", "267;268;271;273").split(";");
 					PROTOCOL_LIST = new TIntArrayList(protocols.length);
 					for (String protocol : protocols)
 					{

+ 2 - 2
L2J_Server_BETA/java/config/server.properties

@@ -79,8 +79,8 @@ MaximumOnlineUsers = 100
 # Numbers of protocol revisions that server allows to connect.
 # Delimiter is ;
 # WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
-# Default: 267;268;271
-AllowedProtocolRevisions = 267;268;271
+# Default: 267;268;271;273
+AllowedProtocolRevisions = 267;268;271;273
 
 
 # ---------------------------------------------------------------------------