From 379ef94aa7455504023f309dd836b13af0f4039b Mon Sep 17 00:00:00 2001 From: Schmoozerd Date: Tue, 27 Sep 2011 14:28:59 +0200 Subject: [PATCH] [11811] Really fix spell 67009. Thank you all for contributing I really should start to learn to count, sr for the inconvenience Signed-off-by: Schmoozerd --- src/game/SpellEffects.cpp | 9 +-------- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 04c4caabb..c01391eeb 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -7360,14 +7360,7 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) if (!unitTarget) return; - uint32 count = 0; - - if (unitTarget->GetMap()->GetDifficulty() == RAID_DIFFICULTY_10MAN_NORMAL || unitTarget->GetMap()->GetDifficulty() == RAID_DIFFICULTY_10MAN_HEROIC) - count = 5; - else - count = 10; - - for (uint8 i = 0; i < count; ++i) + for (uint8 i = 0; i < 11; ++i) unitTarget->CastSpell(unitTarget, m_spellInfo->CalculateSimpleValue(eff_idx), true); return; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index dbcd7d462..14b6f36b4 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 "11810" + #define REVISION_NR "11811" #endif // __REVISION_NR_H__