From 2cb1e7b18dcafa3f2ad72fd196d9332e9a551b15 Mon Sep 17 00:00:00 2001 From: Wyrserth Date: Thu, 25 Jul 2019 16:21:48 +0200 Subject: Script/CullingOfStratholme: add out-of-combat texts to Postmaster Malown and fix Arthas' attack animation when he kills the two civilians for the RP event. --- .../scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp index 3f81fb5da0f..6f0f962d712 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp @@ -1071,7 +1071,7 @@ public: break; case RP2_EVENT_KILL1: if (Creature* citizen = me->FindNearestCreature(NPC_CITIZEN, 100.0f, true)) - DoCast(citizen, SPELL_CRUSADER_STRIKE); + DoCast(citizen, SPELL_CRUSADER_STRIKE, TRIGGERED_IGNORE_SET_FACING); if (Creature* resident = me->FindNearestCreature(NPC_RESIDENT, 100.0f, true)) { resident->SetFlag(UNIT_NPC_EMOTESTATE, EMOTE_STATE_COWER); @@ -1083,7 +1083,7 @@ public: break; case RP2_EVENT_KILL2: if (Creature* resident = me->FindNearestCreature(NPC_RESIDENT, 100.0f, true)) - DoCast(resident, SPELL_CRUSADER_STRIKE); + DoCast(resident, SPELL_CRUSADER_STRIKE, TRIGGERED_IGNORE_SET_FACING); break; case RP2_EVENT_REACT1: case RP2_EVENT_REACT2: -- cgit v1.2.3