[10997] Fixed my wrong addition for wrong spell 58914 (instead 34026).

This commit is contained in:
VladimirMangos 2011-01-11 05:08:18 +03:00
parent 15943c95d8
commit d6eef703ce
2 changed files with 13 additions and 4 deletions

View file

@ -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())

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10996"
#define REVISION_NR "10997"
#endif // __REVISION_NR_H__