[8062] Update triggering spell for talent 51625 and ranks.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Alez 2009-06-21 16:23:54 +04:00 committed by VladimirMangos
parent e2d3a68a48
commit 17a82a063e
2 changed files with 7 additions and 7 deletions

View file

@ -5357,7 +5357,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
case 32748:
{
// Prevent cast Deadly Throw Interrupt on self from last effect (apply dummy) of Deadly Throw
if(this == pVictim)
if (this == pVictim)
return false;
triggered_spell_id = 32747;
@ -5365,7 +5365,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
}
}
// Cut to the Chase
if( dummySpell->SpellIconID == 2909 )
if (dummySpell->SpellIconID == 2909)
{
// "refresh your Slice and Dice duration to its 5 combo point maximum"
// lookup Slice and Dice
@ -5384,20 +5384,20 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
return false;
}
// Deadly Brew
if( dummySpell->SpellIconID == 2963 )
if (dummySpell->SpellIconID == 2963)
{
triggered_spell_id = 25809;
triggered_spell_id = 44289;
break;
}
// Quick Recovery
if( dummySpell->SpellIconID == 2116 )
if (dummySpell->SpellIconID == 2116)
{
if(!procSpell)
return false;
// energy cost save
basepoints0 = procSpell->manaCost * triggerAmount/100;
if(basepoints0 <= 0)
if (basepoints0 <= 0)
return false;
target = this;