aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWyrserth <wyrserth@protonmail.com>2019-07-25 16:21:48 +0200
committerShauren <shauren.trinity@gmail.com>2021-12-17 20:50:03 +0100
commit15f6056bac7e8be39c5e613eb21e50d86161b2f5 (patch)
tree85a7786089df8b44b9b52be11f751a27d24ef910 /src
parent46c0f0d8fe9c9880b7e8cf12b589b06aa757fc80 (diff)
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.
(cherry picked from commit 2cb1e7b18dcafa3f2ad72fd196d9332e9a551b15)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp
index 193024ded2f..c7f116ff7c0 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->SetEmoteState(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: