Removal of unused RaidInfoIDs configuration.
This commit is contained in:
parent
a484179b9f
commit
020e746361
@ -36,12 +36,6 @@ AltRaidsStatsBonus = False
|
||||
# Default: False
|
||||
AllowDirectTeleportToBossRoom = False
|
||||
|
||||
# Grand Boss Info is a NPCthat shows respawnTime of RB
|
||||
# First you must import Custom NPC sql/custom/added_custom_npc.sql
|
||||
# ID NPC: 93000
|
||||
# Raid Info IDs showed
|
||||
RaidInfoIDs = 29001,29006,29014,29019,29020,29022,29028,29045
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Antharas
|
||||
|
@ -909,8 +909,6 @@ public class Config
|
||||
public static boolean BYPASS_FRINTEZZA_PARTIES_CHECK;
|
||||
public static int FRINTEZZA_MIN_PARTIES;
|
||||
public static int FRINTEZZA_MAX_PARTIES;
|
||||
public static String RAID_INFO_IDS;
|
||||
public static List<Integer> RAID_INFO_IDS_LIST = new ArrayList<>();
|
||||
|
||||
public static boolean AUTO_LOOT;
|
||||
public static boolean AUTO_LOOT_BOSS;
|
||||
@ -2428,12 +2426,6 @@ public class Config
|
||||
FRINTEZZA_MIN_PARTIES = bossConfig.getInt("FrintezzaMinParties", 4);
|
||||
FRINTEZZA_MAX_PARTIES = bossConfig.getInt("FrintezzaMaxParties", 5);
|
||||
LEVEL_DIFF_MULTIPLIER_MINION = bossConfig.getFloat("LevelDiffMultiplierMinion", 0.5f);
|
||||
RAID_INFO_IDS = bossConfig.getString("RaidInfoIDs", "");
|
||||
RAID_INFO_IDS_LIST = new ArrayList<>();
|
||||
for (String id : RAID_INFO_IDS.split(","))
|
||||
{
|
||||
RAID_INFO_IDS_LIST.add(Integer.parseInt(id));
|
||||
}
|
||||
// High Priestess van Halter
|
||||
HPH_FIXINTERVALOFHALTER = bossConfig.getInt("FixIntervalOfHalter", 172800);
|
||||
if ((HPH_FIXINTERVALOFHALTER < 300) || (HPH_FIXINTERVALOFHALTER > 864000))
|
||||
|
@ -36,12 +36,6 @@ AltRaidsStatsBonus = False
|
||||
# Default: False
|
||||
AllowDirectTeleportToBossRoom = False
|
||||
|
||||
# Grand Boss Info is a NPCthat shows respawnTime of RB
|
||||
# First you must import Custom NPC sql/custom/added_custom_npc.sql
|
||||
# ID NPC: 93000
|
||||
# Raid Info IDs showed
|
||||
RaidInfoIDs = 29001,29006,29014,29019,29020,29022,29028,29045
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Antharas
|
||||
|
@ -950,8 +950,6 @@ public class Config
|
||||
public static boolean BYPASS_FRINTEZZA_PARTIES_CHECK;
|
||||
public static int FRINTEZZA_MIN_PARTIES;
|
||||
public static int FRINTEZZA_MAX_PARTIES;
|
||||
public static String RAID_INFO_IDS;
|
||||
public static List<Integer> RAID_INFO_IDS_LIST = new ArrayList<>();
|
||||
|
||||
public static boolean AUTO_LOOT;
|
||||
public static boolean AUTO_LOOT_HERBS;
|
||||
@ -2494,12 +2492,6 @@ public class Config
|
||||
FRINTEZZA_MIN_PARTIES = bossConfig.getInt("FrintezzaMinParties", 4);
|
||||
FRINTEZZA_MAX_PARTIES = bossConfig.getInt("FrintezzaMaxParties", 5);
|
||||
LEVEL_DIFF_MULTIPLIER_MINION = bossConfig.getFloat("LevelDiffMultiplierMinion", 0.5f);
|
||||
RAID_INFO_IDS = bossConfig.getString("RaidInfoIDs", "");
|
||||
RAID_INFO_IDS_LIST = new ArrayList<>();
|
||||
for (String id : RAID_INFO_IDS.split(","))
|
||||
{
|
||||
RAID_INFO_IDS_LIST.add(Integer.parseInt(id));
|
||||
}
|
||||
// High Priestess van Halter
|
||||
HPH_FIXINTERVALOFHALTER = bossConfig.getInt("FixIntervalOfHalter", 172800);
|
||||
if ((HPH_FIXINTERVALOFHALTER < 300) || (HPH_FIXINTERVALOFHALTER > 864000))
|
||||
|
Loading…
Reference in New Issue
Block a user