[9084] Implement periodic dummy aura for spell 50789 and 59860

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2009-12-29 17:23:32 +01:00
parent 663f8df849
commit fcbd0cdaa5
2 changed files with 7 additions and 3 deletions

View file

@ -7262,10 +7262,14 @@ void Aura::PeriodicDummyTick()
// case 50493: break; // case 50493: break;
// // Love Rocket Barrage // // Love Rocket Barrage
// case 50530: break; // case 50530: break;
case 50792: // Summon iron dwarf (left or right) case 50789: // Summon iron dwarf (left or right)
case 59859: case 59860:
m_target->CastSpell(m_target, roll_chance_i(50) ? 50790 : 50791, true, NULL, this); m_target->CastSpell(m_target, roll_chance_i(50) ? 50790 : 50791, true, NULL, this);
return; return;
case 50792: // Summon iron trogg (left or right)
case 59859:
m_target->CastSpell(m_target, roll_chance_i(50) ? 50793 : 50794, true, NULL, this);
return;
case 50801: // Summon malformed ooze (left or right) case 50801: // Summon malformed ooze (left or right)
case 59858: case 59858:
m_target->CastSpell(m_target, roll_chance_i(50) ? 50802 : 50803, true, NULL, this); m_target->CastSpell(m_target, roll_chance_i(50) ? 50802 : 50803, true, NULL, this);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9083" #define REVISION_NR "9084"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__