diff options
author | megamage <none@none> | 2009-08-25 19:43:24 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-25 19:43:24 -0500 |
commit | 3f978a99e1ec731b94c4b2497f8c3a41fac798cd (patch) | |
tree | 7dcc63af4e0a67686bec5b3043db675758eaac5d | |
parent | 285f3a60f4c997ff9a90a9c045c6d733dee427cd (diff) |
*[Fix] Priest Tier 6 Trinket (Ashtongue Talisman of Acumen). By Farah
--HG--
branch : trunk
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index d695cc01662..95aeb3537f6 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5757,7 +5757,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger if( procSpell->SpellFamilyFlags[0] & 0x8000 ) triggered_spell_id = 40441; // Renew - else if( procSpell->SpellFamilyFlags[0] & 0x10 ) + else if( procSpell->SpellFamilyFlags[0] & 0x40 ) triggered_spell_id = 40440; else return false; |