diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 98554e835..18e76ba6b 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -7223,8 +7223,11 @@ void Aura::PeriodicDummyTick() // case 45960: break; // // Darkness // case 45996: break; -// // Summon Blood Elves Periodic -// case 46041: break; + case 46041: // Summon Blood Elves Periodic + m_target->CastSpell(m_target, 46037, true, NULL, this); + m_target->CastSpell(m_target, roll_chance_i(50) ? 46038 : 46039, true, NULL, this); + m_target->CastSpell(m_target, 46040, true, NULL, this); + return; // // Transform Visual Missile Periodic // case 46205: break; // // Find Opening Beam End diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index b074a6476..a5def3e3d 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 "9093" + #define REVISION_NR "9094" #endif // __REVISION_NR_H__