From 61f82dc5fc17b9706ad6f87fced019ad5f1b715e Mon Sep 17 00:00:00 2001 From: Den Date: Wed, 18 May 2011 05:56:07 +0400 Subject: [PATCH] [11504] Druid tier 10 2p bonus affect work Signed-off-by: VladimirMangos --- src/game/Spell.cpp | 6 ++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index a81105f5a..a0ce55917 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -3016,6 +3016,12 @@ void Spell::cast(bool skipCheck) // Faerie Fire (Feral) if (m_spellInfo->Id == 16857 && m_caster->GetShapeshiftForm() != FORM_CAT) AddTriggeredSpell(60089); + // Clearcasting + else if (m_spellInfo->Id == 16870) + { + if (m_caster->HasAura(70718)) // Item - Druid T10 Balance 2P Bonus + AddPrecastSpell(70721); // Omen of Doom + } // Berserk (Bear Mangle part) else if (m_spellInfo->Id == 50334) AddTriggeredSpell(58923); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ec84ef8d1..62611f691 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 "11503" + #define REVISION_NR "11504" #endif // __REVISION_NR_H__