Removed gatekeeper quest recommendations.
This commit is contained in:
@@ -76,23 +76,6 @@ public class Link implements IBypassHandler
|
|||||||
"teleporter/separatedsoul.htm",
|
"teleporter/separatedsoul.htm",
|
||||||
"warehouse/clanwh.htm",
|
"warehouse/clanwh.htm",
|
||||||
"warehouse/privatewh.htm",
|
"warehouse/privatewh.htm",
|
||||||
// Quests
|
|
||||||
"teleporter/30006.htm",
|
|
||||||
"teleporter/30006-Q561.htm",
|
|
||||||
"teleporter/30006-Q561-1.htm",
|
|
||||||
"teleporter/30006-Q561-2.htm",
|
|
||||||
"teleporter/30134.htm",
|
|
||||||
"teleporter/30134-Q562.htm",
|
|
||||||
"teleporter/30134-Q562-1.htm",
|
|
||||||
"teleporter/30134-Q562-2.htm",
|
|
||||||
"teleporter/30256.htm",
|
|
||||||
"teleporter/30256-Q562.htm",
|
|
||||||
"teleporter/30256-Q562-1.htm",
|
|
||||||
"teleporter/30256-Q562-2.htm",
|
|
||||||
"teleporter/30848.htm",
|
|
||||||
"teleporter/30848-Q561-Q562.htm",
|
|
||||||
"teleporter/30848-Q561-Q562-1.htm",
|
|
||||||
"teleporter/30848-Q561-Q562-2.htm",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -16,7 +16,6 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.actor.instance;
|
package org.l2jmobius.gameserver.model.actor.instance;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@@ -53,20 +52,20 @@ public class TeleporterInstance extends Npc
|
|||||||
};
|
};
|
||||||
|
|
||||||
private static final Map<Integer, List<TeleporterQuestRecommendationHolder>> QUEST_RECOMENDATIONS = new HashMap<>();
|
private static final Map<Integer, List<TeleporterQuestRecommendationHolder>> QUEST_RECOMENDATIONS = new HashMap<>();
|
||||||
static
|
// static
|
||||||
{
|
// {
|
||||||
// @formatter:off
|
// @formatter:off
|
||||||
QUEST_RECOMENDATIONS.put(30006, new ArrayList<>()); // Gatekeeper Milia
|
// QUEST_RECOMENDATIONS.put(30006, new ArrayList<>()); // Gatekeeper Milia
|
||||||
QUEST_RECOMENDATIONS.get(30006).add(new TeleporterQuestRecommendationHolder(30006, "Q00561_BasicMissionHarnakUndergroundRuins", new int[]{3}, "30006-Q561"));
|
// QUEST_RECOMENDATIONS.get(30006).add(new TeleporterQuestRecommendationHolder(30006, "Q00561_BasicMissionHarnakUndergroundRuins", new int[]{3}, "30006-Q561"));
|
||||||
QUEST_RECOMENDATIONS.put(30134, new ArrayList<>()); // Dark Elf Village Teleport Device
|
// QUEST_RECOMENDATIONS.put(30134, new ArrayList<>()); // Dark Elf Village Teleport Device
|
||||||
QUEST_RECOMENDATIONS.get(30134).add(new TeleporterQuestRecommendationHolder(30134, "Q00562_BasicMissionAltarOfEvil", new int[]{4}, "30134-Q562"));
|
// QUEST_RECOMENDATIONS.get(30134).add(new TeleporterQuestRecommendationHolder(30134, "Q00562_BasicMissionAltarOfEvil", new int[]{4}, "30134-Q562"));
|
||||||
QUEST_RECOMENDATIONS.put(30256, new ArrayList<>()); // Gatekeeper Bella
|
// QUEST_RECOMENDATIONS.put(30256, new ArrayList<>()); // Gatekeeper Bella
|
||||||
QUEST_RECOMENDATIONS.get(30256).add(new TeleporterQuestRecommendationHolder(30256, "Q00562_BasicMissionAltarOfEvil", new int[]{3}, "30256-Q562"));
|
// QUEST_RECOMENDATIONS.get(30256).add(new TeleporterQuestRecommendationHolder(30256, "Q00562_BasicMissionAltarOfEvil", new int[]{3}, "30256-Q562"));
|
||||||
QUEST_RECOMENDATIONS.put(30848, new ArrayList<>()); // Gatekeeper Elisa
|
// QUEST_RECOMENDATIONS.put(30848, new ArrayList<>()); // Gatekeeper Elisa
|
||||||
QUEST_RECOMENDATIONS.get(30848).add(new TeleporterQuestRecommendationHolder(30848, "Q00561_BasicMissionHarnakUndergroundRuins", new int[]{2,4}, "30848-Q561-Q562"));
|
// QUEST_RECOMENDATIONS.get(30848).add(new TeleporterQuestRecommendationHolder(30848, "Q00561_BasicMissionHarnakUndergroundRuins", new int[]{2,4}, "30848-Q561-Q562"));
|
||||||
QUEST_RECOMENDATIONS.get(30848).add(new TeleporterQuestRecommendationHolder(30848, "Q00562_BasicMissionAltarOfEvil", new int[]{2,4}, "30848-Q561-Q562"));
|
// QUEST_RECOMENDATIONS.get(30848).add(new TeleporterQuestRecommendationHolder(30848, "Q00562_BasicMissionAltarOfEvil", new int[]{2,4}, "30848-Q561-Q562"));
|
||||||
// @formatter:on
|
// @formatter:on
|
||||||
}
|
// }
|
||||||
|
|
||||||
public TeleporterInstance(NpcTemplate template)
|
public TeleporterInstance(NpcTemplate template)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user