diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index f4b65756f..0c9588c4b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2035,9 +2035,6 @@ void Aura::HandleAuraDummy(bool apply, bool Real) // Pet will be following owner, this makes him stop target->addUnitState(UNIT_STAT_STUNNED); return; - case 58914: // Kill Command - target->CastSpell(target, 34027, true, NULL, this); - return; case 62061: // Festive Holiday Mount if (target->HasAuraType(SPELL_AURA_MOUNTED)) // Reindeer Transformation @@ -2118,6 +2115,18 @@ void Aura::HandleAuraDummy(bool apply, bool Real) GetHolder()->SetAuraCharges(GetSpellProto()->StackAmount); break; } + case SPELLFAMILY_HUNTER: + { + /* disabled until full implementation + switch(GetId()) + { + case 34026: // Kill Command + target->CastSpell(target, 34027, true, NULL, this); + return; + } + */ + break; + } case SPELLFAMILY_SHAMAN: { switch(GetId()) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3644d339f..a0fc25df7 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 "10996" + #define REVISION_NR "10997" #endif // __REVISION_NR_H__