diff options
author | Nevan <none@none> | 2009-08-17 19:23:17 +0200 |
---|---|---|
committer | Nevan <none@none> | 2009-08-17 19:23:17 +0200 |
commit | 5c285e93b9b5cd4b8ecb3d18e5c752c850a11de5 (patch) | |
tree | 3ea4a5bb839e4eb2828da7f7c8fb214c99d40afb /src | |
parent | 937fd6d632c38db661a0b71caf6d748ae7fc29bc (diff) |
*Fix Glyph of Rake
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Unit.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 25e077cc97c..68521f8f215 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5761,6 +5761,19 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { switch(dummySpell->Id) { + // Glyph of Rake + case 54821: + { + if (procSpell->SpellVisual[0] == 750 && procSpell->EffectApplyAuraName[1] == 3) + { + if (target->GetTypeId() == TYPEID_UNIT) + { + triggered_spell_id = 54820; + break; + } + } + return false; + } // Savage Roar (aura recast on return to cat form) case 52610: { |