Addition of missing AltOlyStartPoints and AltOlyWeeklyPoints configs.
This commit is contained in:
@@ -39,6 +39,14 @@ AltOlyWPeriod = 604800000
|
|||||||
# Default: 86400000
|
# Default: 86400000
|
||||||
AltOlyVPeriod = 86400000
|
AltOlyVPeriod = 86400000
|
||||||
|
|
||||||
|
# Points for reaching Noblesse for the first time
|
||||||
|
# Default: 10
|
||||||
|
AltOlyStartPoints = 10
|
||||||
|
|
||||||
|
# Points every week
|
||||||
|
# Default: 10
|
||||||
|
AltOlyWeeklyPoints = 10
|
||||||
|
|
||||||
# Required number of participants for Classed and Non-Classed matches, Default 5 & 9
|
# Required number of participants for Classed and Non-Classed matches, Default 5 & 9
|
||||||
# Default: 5
|
# Default: 5
|
||||||
AltOlyClassedParticipants = 5
|
AltOlyClassedParticipants = 5
|
||||||
|
@@ -2455,6 +2455,8 @@ public class Config
|
|||||||
ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 360000);
|
ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 360000);
|
||||||
ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000);
|
ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000);
|
||||||
ALT_OLY_VPERIOD = Olympiad.getLong("AltOlyVPeriod", 86400000);
|
ALT_OLY_VPERIOD = Olympiad.getLong("AltOlyVPeriod", 86400000);
|
||||||
|
ALT_OLY_START_POINTS = Olympiad.getInt("AltOlyStartPoints", 10);
|
||||||
|
ALT_OLY_WEEKLY_POINTS = Olympiad.getInt("AltOlyWeeklyPoints", 10);
|
||||||
ALT_OLY_CLASSED = Olympiad.getInt("AltOlyClassedParticipants", 5);
|
ALT_OLY_CLASSED = Olympiad.getInt("AltOlyClassedParticipants", 5);
|
||||||
ALT_OLY_NONCLASSED = Olympiad.getInt("AltOlyNonClassedParticipants", 9);
|
ALT_OLY_NONCLASSED = Olympiad.getInt("AltOlyNonClassedParticipants", 9);
|
||||||
ALT_OLY_REG_DISPLAY = Olympiad.getInt("AltOlyRegistrationDisplayNumber", 100);
|
ALT_OLY_REG_DISPLAY = Olympiad.getInt("AltOlyRegistrationDisplayNumber", 100);
|
||||||
|
Reference in New Issue
Block a user