Skip to content

Commit

Permalink
[10997] Fixed my wrong addition for wrong spell 58914 (instead 34026).
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Jan 11, 2011
1 parent 01b46af commit 005b9f3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions src/game/SpellAuras.cpp
Expand Up @@ -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
Expand Down Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion 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__

0 comments on commit 005b9f3

Please sign in to comment.