diff options
author | Wyrserth <wyrserth@protonmail.com> | 2019-07-25 16:21:48 +0200 |
---|---|---|
committer | Wyrserth <wyrserth@protonmail.com> | 2019-07-25 16:21:48 +0200 |
commit | 2cb1e7b18dcafa3f2ad72fd196d9332e9a551b15 (patch) | |
tree | afa1675219da47392ed0ed879200c206def5d882 /src | |
parent | 75a5192c31390deca490dada3bdb0e89dcafdf8d (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.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/npc_arthas.cpp | 4 |
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 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: |