diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index d61ed00f6..980cdb2f9 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1570,6 +1570,7 @@ void Spell::SetTargetMap(SpellEffectIndex effIndex, uint32 targetMode, UnitList& case 31347: // Doom TODO: exclude top threat target from target selection case 33711: // Murmur's Touch case 38794: // Murmur's Touch (h) + case 45976: // Open Portal case 50988: // Glare of the Tribunal (Halls of Stone) case 59870: // Glare of the Tribunal (h) (Halls of Stone) case 64218: // Overcharge diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 40c970929..40d66d3af 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1605,6 +1605,25 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->RemoveAurasDueToSpell(45683); return; } + case 45976: // Open Portal + case 46177: // Open All Portals + { + if (!unitTarget) + return; + + // portal visual + unitTarget->CastSpell(unitTarget, 45977, true); + + // break in case additional procressing in scripting library required + break; + } + case 45989: // Summon Void Sentinel Summoner Visual + { + // summon void sentinel + unitTarget->CastSpell(unitTarget, 45988, true); + + return; + } case 45990: // Collect Oil { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e38f2183c..8fd1065fc 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 "11843" + #define REVISION_NR "11844" #endif // __REVISION_NR_H__