From fcbd0cdaa57140c3211c56a6496adb8858d79739 Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Tue, 29 Dec 2009 17:23:32 +0100 Subject: [PATCH] [9084] Implement periodic dummy aura for spell 50789 and 59860 Signed-off-by: NoFantasy --- src/game/SpellAuras.cpp | 8 ++++++-- src/shared/revision_nr.h | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 43f87c5f9..d44c0b42c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -7262,10 +7262,14 @@ void Aura::PeriodicDummyTick() // case 50493: break; // // Love Rocket Barrage // case 50530: break; - case 50792: // Summon iron dwarf (left or right) - case 59859: + case 50789: // Summon iron dwarf (left or right) + case 59860: m_target->CastSpell(m_target, roll_chance_i(50) ? 50790 : 50791, true, NULL, this); 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 59858: m_target->CastSpell(m_target, roll_chance_i(50) ? 50802 : 50803, true, NULL, this); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9e75fc692..c0ae5db2e 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 "9083" + #define REVISION_NR "9084" #endif // __REVISION_NR_H__