mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 13:37:01 +00:00
[11584] Add script effects of spell 48724, 48726, 48728 and 48730
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
dd66ce20f2
commit
3788348b46
2 changed files with 12 additions and 1 deletions
|
|
@ -6885,7 +6885,18 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx)
|
||||||
// Torture the Torturer: High Executor's Branding Iron Impact
|
// Torture the Torturer: High Executor's Branding Iron Impact
|
||||||
unitTarget->CastSpell(unitTarget, 48614, true);
|
unitTarget->CastSpell(unitTarget, 48614, true);
|
||||||
return;
|
return;
|
||||||
|
case 48724: // The Denouncement: Commander Jordan On Death
|
||||||
|
case 48726: // The Denouncement: Lead Cannoneer Zierhut On Death
|
||||||
|
case 48728: // The Denouncement: Blacksmith Goodman On Death
|
||||||
|
case 48730: // The Denouncement: Stable Master Mercer On Death
|
||||||
|
{
|
||||||
|
// Compelled
|
||||||
|
if (!unitTarget || !m_caster->HasAura(48714))
|
||||||
|
return;
|
||||||
|
|
||||||
|
unitTarget->CastSpell(unitTarget, m_spellInfo->CalculateSimpleValue(eff_idx), true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
// Gender spells
|
// Gender spells
|
||||||
case 48762: // A Fall from Grace: Scarlet Raven Priest Image - Master
|
case 48762: // A Fall from Grace: Scarlet Raven Priest Image - Master
|
||||||
case 45759: // Warsong Orc Disguise
|
case 45759: // Warsong Orc Disguise
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11583"
|
#define REVISION_NR "11584"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue