diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 418ad9b72..c4cb884e5 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1960,6 +1960,11 @@ void Aura::HandleAuraDummy(bool apply, bool Real) } return; } + case 13139: // net-o-matic + // root to self part of (root_target->charge->root_self sequence + if (Unit* caster = GetCaster()) + caster->CastSpell(caster, 13138, true, NULL, this); + return; case 31606: // Stormcrow Amulet { CreatureInfo const * cInfo = ObjectMgr::GetCreatureTemplate(17970); @@ -1970,11 +1975,6 @@ void Aura::HandleAuraDummy(bool apply, bool Real) return; } - case 13139: // net-o-matic - // root to self part of (root_target->charge->root_self sequence - if (Unit* caster = GetCaster()) - caster->CastSpell(caster, 13138, true, NULL, this); - return; case 32045: // Soul Charge case 32051: case 32052: diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 246b7112c..82504d4b1 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 "10342" + #define REVISION_NR "10343" #endif // __REVISION_NR_H__