aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclick <none@none>2010-05-01 08:36:38 +0200
committerclick <none@none>2010-05-01 08:36:38 +0200
commitbcbb52f507e12e0713de48cbe9a1262ec76610fe (patch)
treecc216981ab3e81736a1df82faa7faf48816aa915
parent8df6879e94c255a9cfb3063f8e5437ee77874d3e (diff)
Fix recipe-learning in Raozrofen Down (cooking/alchemy) - patch by PrinceCreed
Closes issue #1009 --HG-- branch : trunk
-rw-r--r--src/scripts/kalimdor/razorfen_downs/razorfen_downs.cpp4
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;