2
0
Эх сурвалжийг харах

'''AltOlyTeamsParticipants''' default should be 9 instead of 4, in High Five will be changed to 6.

MELERIX 14 жил өмнө
parent
commit
0fe47f341c

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

@@ -2530,7 +2530,7 @@ public final class Config
 					ALT_OLY_VPERIOD = Long.parseLong(olympiad.getProperty("AltOlyVPeriod","86400000"));
 					ALT_OLY_CLASSED = Integer.parseInt(olympiad.getProperty("AltOlyClassedParticipants","5"));
 					ALT_OLY_NONCLASSED = Integer.parseInt(olympiad.getProperty("AltOlyNonClassedParticipants","9"));
-					ALT_OLY_TEAMS = Integer.parseInt(olympiad.getProperty("AltOlyTeamsParticipants","4"));
+					ALT_OLY_TEAMS = Integer.parseInt(olympiad.getProperty("AltOlyTeamsParticipants","9"));
 					ALT_OLY_REG_DISPLAY = Integer.parseInt(olympiad.getProperty("AltOlyRegistrationDisplayNumber","100"));
 					ALT_OLY_CLASSED_REWARD = parseItemsList(olympiad.getProperty("AltOlyClassedReward","13722,50"));
 					ALT_OLY_NONCLASSED_REWARD = parseItemsList(olympiad.getProperty("AltOlyNonClassedReward","13722,40"));

+ 2 - 2
L2_GameServer/java/config/olympiad.properties

@@ -42,8 +42,8 @@ AltOlyClassedParticipants = 5
 AltOlyNonClassedParticipants = 9
 
 # Required number of participants for the 3x3 teams games
-# Default: 4
-AltOlyTeamsParticipants = 4
+# Default: 9
+AltOlyTeamsParticipants = 9
 
 # Number used for displaying amount of registered participants, messages "Fewer than ..." or "More than ...".
 # 0 for displaying digits instead of text phrase (old style).