mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[10997] Fixed my wrong addition for wrong spell 58914 (instead 34026).
This commit is contained in:
parent
15943c95d8
commit
d6eef703ce
2 changed files with 13 additions and 4 deletions
|
|
@ -2035,9 +2035,6 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
|
||||||
// Pet will be following owner, this makes him stop
|
// Pet will be following owner, this makes him stop
|
||||||
target->addUnitState(UNIT_STAT_STUNNED);
|
target->addUnitState(UNIT_STAT_STUNNED);
|
||||||
return;
|
return;
|
||||||
case 58914: // Kill Command
|
|
||||||
target->CastSpell(target, 34027, true, NULL, this);
|
|
||||||
return;
|
|
||||||
case 62061: // Festive Holiday Mount
|
case 62061: // Festive Holiday Mount
|
||||||
if (target->HasAuraType(SPELL_AURA_MOUNTED))
|
if (target->HasAuraType(SPELL_AURA_MOUNTED))
|
||||||
// Reindeer Transformation
|
// Reindeer Transformation
|
||||||
|
|
@ -2118,6 +2115,18 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
|
||||||
GetHolder()->SetAuraCharges(GetSpellProto()->StackAmount);
|
GetHolder()->SetAuraCharges(GetSpellProto()->StackAmount);
|
||||||
break;
|
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:
|
case SPELLFAMILY_SHAMAN:
|
||||||
{
|
{
|
||||||
switch(GetId())
|
switch(GetId())
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10996"
|
#define REVISION_NR "10997"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue