diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 93067d835..5e5412496 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4841,6 +4841,16 @@ void Spell::EffectScriptEffect(uint32 effIndex) unitTarget->CastSpell(unitTarget,51771,false); break; } + // Death Gate + case 52751: + { + if(!unitTarget || unitTarget->getClass() != CLASS_DEATH_KNIGHT) + return; + // triggered spell is stored in m_spellInfo->EffectBasePoints[0] + unitTarget->CastSpell(unitTarget, damage, false); + break; + } + } break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 91f15976c..b6df063fc 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7115" + #define REVISION_NR "7116" #endif // __REVISION_NR_H__