From 020e7463613fe4a78b83713c228b46c3cda290c7 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Tue, 21 Dec 2021 01:50:43 +0000 Subject: [PATCH] Removal of unused RaidInfoIDs configuration. --- .../dist/game/config/GrandBoss.ini | 6 ------ .../java/org/l2jmobius/Config.java | 8 -------- L2J_Mobius_C6_Interlude/dist/game/config/GrandBoss.ini | 6 ------ L2J_Mobius_C6_Interlude/java/org/l2jmobius/Config.java | 8 -------- 4 files changed, 28 deletions(-) diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/GrandBoss.ini b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/GrandBoss.ini index ff8f535bab..2025d01a8b 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/Config.java b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/Config.java index 2d5e081ba5..015173b01c 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/Config.java @@ -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 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)) diff --git a/L2J_Mobius_C6_Interlude/dist/game/config/GrandBoss.ini b/L2J_Mobius_C6_Interlude/dist/game/config/GrandBoss.ini index ff8f535bab..2025d01a8b 100644 --- a/L2J_Mobius_C6_Interlude/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_C6_Interlude/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/Config.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/Config.java index 3b0535f13e..5286b75515 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/Config.java @@ -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 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))