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

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8061" #define REVISION_NR "8062"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__