[9072] Implement periodic dummy aura for spells 50792, 59859, 50801 and 59858

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2009-12-27 15:28:41 +01:00
parent 81d55d4a41
commit ec1e30490b
2 changed files with 9 additions and 1 deletions

View file

@ -7262,6 +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 59859:
m_target->CastSpell(m_target, roll_chance_i(50) ? 50790 : 50791, true, NULL, this);
return;
case 50801: // Summon malformed ooze (left or right)
case 59858:
m_target->CastSpell(m_target, roll_chance_i(50) ? 50802 : 50803, true, NULL, this);
return;
// Exist more after, need add later // Exist more after, need add later
default: default:
break; break;

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 "9071" #define REVISION_NR "9072"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__