diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 2420aa6f2..844780034 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -769,6 +769,16 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) { switch(m_spellInfo->Id) { + case 3360: // Curse of the Eye + { + if(!unitTarget) + return; + + uint32 spell_id = (unitTarget->getGender() == GENDER_MALE) ? 10651: 10653; + + m_caster->CastSpell(unitTarget, spell_id, true); + return; + } case 7671: // Transformation (human<->worgen) { if (!unitTarget) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a74562e64..f4fc6e3cc 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 "11141" + #define REVISION_NR "11142" #endif // __REVISION_NR_H__