소스 검색

BETA: New Protocol.

MELERIX 14 년 전
부모
커밋
fc73eeb82d
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      L2J_Server_BETA/java/com/l2jserver/Config.java
  2. 2 2
      L2J_Server_BETA/java/config/server.properties

+ 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
 
 
 # ---------------------------------------------------------------------------