diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 40d66d3af..136565610 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -6701,6 +6701,28 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) unitTarget->CastSpell(unitTarget, 44870, true); break; } + case 45141: // Burn + { + unitTarget->CastSpell(unitTarget, 46394, true, NULL, NULL, m_caster->GetObjectGuid()); + return; + } + case 45151: // Burn + { + if (!unitTarget || unitTarget->HasAura(46394)) + return; + + // Make the burn effect jump to another friendly target + unitTarget->CastSpell(unitTarget, 46394, true); + return; + } + case 45185: // Stomp + { + // Remove the burn effect + if (unitTarget->HasAura(46394)) + unitTarget->RemoveAurasDueToSpell(46394); + + return; + } case 45206: // Copy Off-hand Weapon { if (m_caster->GetTypeId() != TYPEID_UNIT || !unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 8fd1065fc..5dda3da6a 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 "11844" + #define REVISION_NR "11845" #endif // __REVISION_NR_H__