diff options
author | maximius <none@none> | 2009-09-26 22:13:08 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-09-26 22:13:08 -0700 |
commit | 371c6fd37184fb0c0e98fc2b8b11c2a496991211 (patch) | |
tree | 5a81b5a4867e93fb40bd8f5864d2f6e2987ad999 /src/game/Unit.cpp | |
parent | 342b071d476f71f9467c56c46ac046eb906f7205 (diff) |
*Gundrak: Eck the Ferocious & Gal'Darah, by Tartalo
*Implement talent Lava Flows (ranks 1-3), by win32
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 067d953e381..e0bd23b53b2 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6557,6 +6557,24 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger target = this; break; } + // Lava Flows (Rank 1) + case 51480: + { + triggered_spell_id = 64694; + break; + } + // Lava Flows (Rank 2) + case 51481: + { + triggered_spell_id = 65263; + break; + } + // Lava Flows (Rank 3) + case 51482: + { + triggered_spell_id = 65264; + break; + } // Glyph of Healing Wave case 55440: { |