diff options
author | John Holiver <none@none> | 2010-06-02 18:30:57 -0300 |
---|---|---|
committer | John Holiver <none@none> | 2010-06-02 18:30:57 -0300 |
commit | cba199fa204635bf69e4c16fff3de01ce43510c3 (patch) | |
tree | f2ee24be06b1e1aea91a2a5f1e1cfed1dc091e21 /src | |
parent | 9f28faa29b63693a39d56d953b0f1af3cff3ba07 (diff) |
* Fix Glyph of Mend Pet (tnx L1ghtGu4rd from Mangos)
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Unit.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index e072a0458e7..be0ee41f576 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6606,6 +6606,12 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger } break; } + // Glyph of Mend Pet + if(dummySpell->Id == 57870) + { + pVictim->CastSpell(pVictim, 57894, true, NULL, NULL, GetGUID()); + return true; + } break; } case SPELLFAMILY_PALADIN: |