diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 486095696..198796144 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2050,6 +2050,20 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->SetFacingTo(frand(0, M_PI_F*2), true); return; } + case 64981: // Summon Random Vanquished Tentacle + { + uint32 spell_id = 0; + + switch(urand(0, 2)) + { + case 0: spell_id = 64982; break; // Summon Vanquished Crusher Tentacle + case 1: spell_id = 64983; break; // Summon Vanquished Constrictor Tentacle + case 2: spell_id = 64984; break; // Summon Vanquished Corruptor Tentacle + } + + m_caster->CastSpell(m_caster, spell_id, true); + return; + } case 66390: // Read Last Rites { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c5401794a..180f6b0a2 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 "11181" + #define REVISION_NR "11182" #endif // __REVISION_NR_H__