From 02e45370f602c8127fa60fb7402abc9d4b0ee56f Mon Sep 17 00:00:00 2001
From: Zoey76 <zoey_76@msn.com>
Date: Wed, 8 Jan 2014 23:39:31 +0000
Subject: [PATCH] BETA: Fix for quest Don't Know, Don't Care (456).

Patch by: Battlecruiser
Reviewed by: jurchiks, Zoey76
---
 .../Q00456_DontKnowDontCare/Q00456_DontKnowDontCare.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00456_DontKnowDontCare/Q00456_DontKnowDontCare.java b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00456_DontKnowDontCare/Q00456_DontKnowDontCare.java
index 9231263588..1d6ed02c86 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00456_DontKnowDontCare/Q00456_DontKnowDontCare.java
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00456_DontKnowDontCare/Q00456_DontKnowDontCare.java
@@ -305,9 +305,9 @@ public final class Q00456_DontKnowDontCare extends Quest
 		
 		if (!allowedPlayers.isEmpty())
 		{
-			// this depends on the boss respawn delay being at least 5 minutes
-			allowedPlayerMap.put(npc.getObjectId(), allowedPlayers);
-			addSpawn(MONSTER_NPCS.get(npc.getId()), npc, true, 0);
+			// This depends on the boss respawn delay being at least 5 minutes.
+			final L2Npc spawned = addSpawn(MONSTER_NPCS.get(npc.getId()), npc, true, 0);
+			allowedPlayerMap.put(spawned.getObjectId(), allowedPlayers);
 			startQuestTimer("unspawnRaidCorpse", 300000, npc, null);
 		}
 		
-- 
GitLab