diff options
| author | Rushor <PBienati@web.de> | 2015-05-23 11:57:56 +0200 |
|---|---|---|
| committer | Rushor <PBienati@web.de> | 2015-05-24 14:16:47 +0200 |
| commit | a961177d2022619f2a37d544e3fa086acc4b6ba0 (patch) | |
| tree | f37baa8aa85d9e157d1aefda9918241761307812 | |
| parent | 0148832b322b58a5219ea4393331e1b5937c304c (diff) | |
Scripts/Spells: Curing the Sick - Add Questcredit
closes #14688
| -rw-r--r-- | src/server/scripts/Spells/spell_quest.cpp | 11 |
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); } } } |
