diff options
-rw-r--r-- | src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp b/src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp index 5d0ebee56dd..3e8f4049a37 100644 --- a/src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp +++ b/src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp @@ -61,14 +61,14 @@ bool GossipSelect_npc_henry_stern (Player* pPlayer, Creature* pCreature, uint32 { if (uiAction == GOSSIP_ACTION_INFO_DEF + 1) { - pCreature->CastSpell(pPlayer, SPELL_TEACHING_GOLDTHORN_TEA, true); + pPlayer->CastSpell(pPlayer, SPELL_TEACHING_GOLDTHORN_TEA, true); pPlayer->SEND_GOSSIP_MENU(GOSSIP_TEXT_TEA_ANSWER, pCreature->GetGUID()); } if (uiAction == GOSSIP_ACTION_INFO_DEF + 2) { + pPlayer->CastSpell(pPlayer, SPELL_TEACHING_MIGHTY_TROLLS_BLOOD_POTION, true); pPlayer->SEND_GOSSIP_MENU(GOSSIP_TEXT_POTION_ANSWER, pCreature->GetGUID()); - pCreature->CastSpell(pPlayer, SPELL_TEACHING_MIGHTY_TROLLS_BLOOD_POTION, true); } return true; |