mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 13:37:00 +00:00
[11180] Add dummy effect of spell 69922
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
97e6439a0f
commit
06d36feed2
2 changed files with 10 additions and 1 deletions
|
|
@ -2105,6 +2105,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
|
||||||
m_caster->CastSpell(m_caster, spell_id, true);
|
m_caster->CastSpell(m_caster, spell_id, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
case 69922: // Temper Quel'Delar
|
||||||
|
{
|
||||||
|
if (!unitTarget)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Return Tempered Quel'Delar
|
||||||
|
unitTarget->CastSpell(m_caster, 69956, true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11179"
|
#define REVISION_NR "11180"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue