aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMitchesD <majklprofik@seznam.cz>2015-05-24 14:21:34 +0200
committerMitchesD <majklprofik@seznam.cz>2015-05-24 14:21:34 +0200
commitd898ade5a98e9654493c04ea616434d486570db8 (patch)
tree7b7d849f39278cf073693da386e659b47a4d4740 /src
parentcdb16ea27fe4776c8dc0add4d2828839f6565278 (diff)
parenta961177d2022619f2a37d544e3fa086acc4b6ba0 (diff)
Merge pull request #14748 from Rushor/druid
Scripts/Spells: Curing the Sick - Add Questcredit
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_quest.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/server/scripts/Spells/spell_quest.cpp b/src/server/scripts/Spells/spell_quest.cpp
index d98ef2ec799..0ec8bfc3a9c 100644
--- a/src/server/scripts/Spells/spell_quest.cpp
+++ b/src/server/scripts/Spells/spell_quest.cpp
@@ -208,22 +208,23 @@ class spell_q6124_6129_apply_salve : public SpellScriptLoader
if (GetCastItem())
if (Creature* creatureTarget = GetHitCreature())
{
- uint32 uiNewEntry = 0;
+ uint32 newEntry = 0;
switch (caster->GetTeam())
{
case HORDE:
if (creatureTarget->GetEntry() == NPC_SICKLY_GAZELLE)
- uiNewEntry = NPC_CURED_GAZELLE;
+ newEntry = NPC_CURED_GAZELLE;
break;
case ALLIANCE:
if (creatureTarget->GetEntry() == NPC_SICKLY_DEER)
- uiNewEntry = NPC_CURED_DEER;
+ newEntry = NPC_CURED_DEER;
break;
}
- if (uiNewEntry)
+ if (newEntry)
{
- creatureTarget->UpdateEntry(uiNewEntry);
+ creatureTarget->UpdateEntry(newEntry);
creatureTarget->DespawnOrUnsummon(DESPAWN_TIME);
+ caster->KilledMonsterCredit(newEntry);
}
}
}