|
@@ -363,6 +363,7 @@ public final class Config
|
|
|
public static boolean DEVELOPER;
|
|
|
public static boolean ACCEPT_GEOEDITOR_CONN;
|
|
|
public static boolean TEST_SERVER;
|
|
|
+ public static boolean ALT_DEV_NO_QUESTS;
|
|
|
public static boolean ALT_DEV_NO_SPAWNS;
|
|
|
public static boolean SERVER_LIST_TESTSERVER;
|
|
|
public static int THREAD_P_EFFECTS;
|
|
@@ -1269,7 +1270,7 @@ public final class Config
|
|
|
ALT_ALLY_JOIN_DAYS_WHEN_LEAVED = Integer.parseInt(Character.getProperty("DaysBeforeJoinAllyWhenLeaved", "1"));
|
|
|
ALT_ALLY_JOIN_DAYS_WHEN_DISMISSED = Integer.parseInt(Character.getProperty("DaysBeforeJoinAllyWhenDismissed", "1"));
|
|
|
ALT_ACCEPT_CLAN_DAYS_WHEN_DISMISSED = Integer.parseInt(Character.getProperty("DaysBeforeAcceptNewClanWhenDismissed", "1"));
|
|
|
- ALT_CREATE_ALLY_DAYS_WHEN_DISSOLVED = Integer.parseInt(Character.getProperty("DaysBeforeCreateNewAllyWhenDissolved", "10"));
|
|
|
+ ALT_CREATE_ALLY_DAYS_WHEN_DISSOLVED = Integer.parseInt(Character.getProperty("DaysBeforeCreateNewAllyWhenDissolved", "1"));
|
|
|
ALT_MAX_NUM_OF_CLANS_IN_ALLY = Integer.parseInt(Character.getProperty("AltMaxNumOfClansInAlly", "3"));
|
|
|
ALT_CLAN_MEMBERS_FOR_WAR = Integer.parseInt(Character.getProperty("AltClanMembersForWar", "15"));
|
|
|
ALT_MEMBERS_CAN_WITHDRAW_FROM_CLANWH= Boolean.parseBoolean(Character.getProperty("AltMembersCanWithdrawFromClanWH", "false"));
|
|
@@ -1431,6 +1432,7 @@ public final class Config
|
|
|
ACCEPT_GEOEDITOR_CONN = Boolean.parseBoolean(General.getProperty("AcceptGeoeditorConn", "false"));
|
|
|
TEST_SERVER = Boolean.parseBoolean(General.getProperty("TestServer", "false"));
|
|
|
SERVER_LIST_TESTSERVER = Boolean.parseBoolean(General.getProperty("ListTestServers", "false"));
|
|
|
+ ALT_DEV_NO_QUESTS = Boolean.parseBoolean(General.getProperty("AltDevNoQuests", "False"));
|
|
|
ALT_DEV_NO_SPAWNS = Boolean.parseBoolean(General.getProperty("AltDevNoSpawns", "False"));
|
|
|
THREAD_P_EFFECTS = Integer.parseInt(General.getProperty("ThreadPoolSizeEffects", "10"));
|
|
|
THREAD_P_GENERAL = Integer.parseInt(General.getProperty("ThreadPoolSizeGeneral", "13"));
|