MELERIX пре 14 година
родитељ
комит
fc73eeb82d

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

@@ -1104,7 +1104,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").split(";");
+					String[] protocols = serverSettings.getProperty("AllowedProtocolRevisions", "267;268;271").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: 268
-AllowedProtocolRevisions = 267;268
+# Default: 267;268;271
+AllowedProtocolRevisions = 267;268;271
 
 
 # ---------------------------------------------------------------------------