Skip to content
Snippets Groups Projects
Commit 02e45370 authored by Zoey76's avatar Zoey76
Browse files

BETA: Fix for quest Don't Know, Don't Care (456).

Patch by: Battlecruiser
Reviewed by: jurchiks, Zoey76
parent c57d9240
No related branches found
No related tags found
No related merge requests found
...@@ -305,9 +305,9 @@ public final class Q00456_DontKnowDontCare extends Quest ...@@ -305,9 +305,9 @@ public final class Q00456_DontKnowDontCare extends Quest
if (!allowedPlayers.isEmpty()) if (!allowedPlayers.isEmpty())
{ {
// this depends on the boss respawn delay being at least 5 minutes // This depends on the boss respawn delay being at least 5 minutes.
allowedPlayerMap.put(npc.getObjectId(), allowedPlayers); final L2Npc spawned = addSpawn(MONSTER_NPCS.get(npc.getId()), npc, true, 0);
addSpawn(MONSTER_NPCS.get(npc.getId()), npc, true, 0); allowedPlayerMap.put(spawned.getObjectId(), allowedPlayers);
startQuestTimer("unspawnRaidCorpse", 300000, npc, null); startQuestTimer("unspawnRaidCorpse", 300000, npc, null);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment