diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 6a3b3dbb2..d12a6646e 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1232,6 +1232,20 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) return; } + case 39189: // Sha'tari Torch + { + if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) + return; + + // Flames + if (unitTarget->HasAura(39199)) + return; + + unitTarget->CastSpell(unitTarget, 39199, true); + ((Player*)m_caster)->KilledMonsterCredit(unitTarget->GetEntry(), unitTarget->GetObjectGuid()); + ((Creature*)unitTarget)->ForcedDespawn(10000); + return; + } case 40802: // Mingo's Fortune Generator (Mingo's Fortune Giblets) { // selecting one from Bloodstained Fortune item diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 52ed73961..ef0363857 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11124" + #define REVISION_NR "11125" #endif // __REVISION_NR_H__