Skip to content

Commit

Permalink
Core/Scripts: Culling of Stratholme - Fix so Arthas does not disappear.
Browse files Browse the repository at this point in the history
  • Loading branch information
lostgenx committed May 8, 2013
1 parent 15cac42 commit ab81d06
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -293,7 +293,7 @@ class npc_arthas : public CreatureScript
break;
}
player->CLOSE_GOSSIP_MENU();
ai->SetDespawnAtFar(true);
ai->SetDespawnAtFar(false);
creature->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP);
return true;
}
Expand Down Expand Up @@ -589,7 +589,7 @@ class npc_arthas : public CreatureScript
}
}

void UpdateAI(uint32 diff)
void UpdateAI(const uint32 diff)
{
npc_escortAI::UpdateAI(diff);

Expand Down Expand Up @@ -1078,7 +1078,7 @@ class npc_arthas : public CreatureScript
if (step == 76) Talk(SAY_PHASE310);
SetHoldState(false);
bStepping = false;
SetRun(true);
SetRun(false);
JumpToNextStep(2000);
}
break;
Expand Down Expand Up @@ -1272,4 +1272,4 @@ void AddSC_culling_of_stratholme()
{
new npc_arthas();
new npc_crate_helper();
}
}

1 comment on commit ab81d06

@Vasago
Copy link

@Vasago Vasago commented on ab81d06 May 11, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Working but bonus boss http://www.wowhead.com/npc=32273 is not present only left thing.

Please sign in to comment.