diff options
author | Kudlaty <none@none> | 2009-08-17 22:25:44 +0200 |
---|---|---|
committer | Kudlaty <none@none> | 2009-08-17 22:25:44 +0200 |
commit | 168a9869500cc4cfd884090e21f47a59464ad2d3 (patch) | |
tree | 688b6fb3f5d252c33f4d514eeff0846223ae8085 | |
parent | 977e655e2adb227ca1cd72ab317fd465ddd94b5c (diff) |
Fix typo in Death's Challange.
--HG--
branch : trunk
-rw-r--r-- | src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp b/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp index 38c111de67b..beb21580258 100644 --- a/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp +++ b/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp @@ -474,7 +474,7 @@ bool GossipSelect_npc_death_knight_initiate(Player* pPlayer, Creature* pCreature int32 uiSayId = rand()% (sizeof(m_auiRandomSay)/sizeof(int32)); DoScriptText(m_auiRandomSay[uiSayId], pCreature, pPlayer); - pCreature->CastSpell(pPlayer, SPELL_DUEL, false); + pPlayer->CastSpell(pCreature, SPELL_DUEL, false); pPlayer->CastSpell(pPlayer, SPELL_DUEL_FLAG, true); } return true; |