Skip to content

Commit

Permalink
fix(Script/DeathKnight): A Special Surprise Npcs issues. (azerothcore…
Browse files Browse the repository at this point in the history
  • Loading branch information
Rorschach91 authored Oct 12, 2024
1 parent dedea74 commit 84646a7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,8 @@ class npc_a_special_surprise : public CreatureScript
ExecuteSpeech_Counter = 0;
PlayerGUID.Clear();

me->SetImmuneToPC(false);
me->SetReactState(REACT_PASSIVE);
me->SetImmuneToPC(true);
}

bool MeetQuestCondition(Player* player)
Expand Down Expand Up @@ -734,6 +735,7 @@ class npc_a_special_surprise : public CreatureScript
case 9:
Talk(SAY_EXEC_TIME, player);
me->SetStandState(UNIT_STAND_STATE_KNEEL);
me->SetReactState(REACT_PASSIVE);
me->SetImmuneToPC(false);
break;
case 10:
Expand Down

0 comments on commit 84646a7

Please sign in to comment.