[9094] Implement periodic dummy aura for spell 46041

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-01-01 15:15:36 +01:00
parent 65f4e7d278
commit 15193ab9c3
2 changed files with 6 additions and 3 deletions

View file

@ -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

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9093"
#define REVISION_NR "9094"
#endif // __REVISION_NR_H__