Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,12 @@ void instance_karazhan::SetData(uint32 uiType, uint32 uiData)
if (!pMidnight->IsAlive())
pMidnight->Respawn();
}
else // In P3 Midnight doesnt exist anymore so we have to spawn a new npc
{
SpawnGroup* group = instance->GetSpawnManager().GetSpawnGroup(SPAWN_GROUP_MIDNIGHT);
if (group)
group->Spawn(true, true);
}
}
break;
case TYPE_MOROES:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ enum

DATA_BASEMENT_EVENT = 1, // DO NOT CHANGE! Used by Acid. - used to check the mobs for the the basement event.

SPAWN_GROUP_MIDNIGHT = 5320025,
NPC_ATTUMEN = 15550,
NPC_MIDNIGHT = 16151,
NPC_MOROES = 15687,
Expand Down