mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[11021] Damage buff apply for spell 57934
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
d072a42807
commit
1b1a7ebd24
2 changed files with 7 additions and 3 deletions
|
|
@ -1670,8 +1670,12 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
|
||||||
// Tricks of the trade
|
// Tricks of the trade
|
||||||
case 57934:
|
case 57934:
|
||||||
{
|
{
|
||||||
triggered_spell_id = 59628; // 6 sec buff on self
|
triggered_spell_id = 57933; // Tricks of the Trade, increased damage buff
|
||||||
target = this;
|
target = getHostileRefManager().GetThreatRedirectionTarget();
|
||||||
|
if (!target)
|
||||||
|
return SPELL_AURA_PROC_FAILED;
|
||||||
|
|
||||||
|
CastSpell(this, 59628, true); // Tricks of the Trade (caster timer)
|
||||||
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 "11020"
|
#define REVISION_NR "11021"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue