mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[8921] Implemement talent 53583 and ranks refresh part for spell 54428
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
155ea6f40a
commit
bfaeddbc4b
2 changed files with 9 additions and 1 deletions
|
|
@ -5350,6 +5350,14 @@ void Spell::EffectScriptEffect(uint32 effIndex)
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// Guarded by The Light (Paladin spell with SPELLFAMILY_WARLOCK)
|
||||||
|
case 63521:
|
||||||
|
{
|
||||||
|
// Divine Plea, refresh on target (3 aura slots)
|
||||||
|
if (Aura* aura = unitTarget->GetAura(54428,0))
|
||||||
|
aura->RefreshAura();
|
||||||
|
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 "8920"
|
#define REVISION_NR "8921"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue