aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoschiwald <joschiwald.trinity@gmail.com>2015-07-19 18:19:08 +0200
committerjoschiwald <joschiwald.trinity@gmail.com>2015-07-19 18:19:08 +0200
commit45d5ad270cdd2483a3c2bd35f4490d057eacaa5e (patch)
tree4539fb13f167a8a2b47deae980af7d834b6ee85a
parent5a2452f7d6a85a767e151c8ab5784da693d79286 (diff)
Core/Spells: Renewed Hope also affects Flash Heal
Closes #15037
-rw-r--r--src/server/game/Spells/SpellMgr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index b63f0571ac5..54262d8f2e4 100644
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -3158,6 +3158,11 @@ void SpellMgr::LoadSpellInfoCorrections()
// add corruption to affected spells
spellInfo->Effects[EFFECT_1].SpellClassMask[0] |= 2;
break;
+ case 57470: // Renewed Hope (Rank 1)
+ case 57472: // Renewed Hope (Rank 2)
+ // should also affect Flash Heal
+ spellInfo->Effects[EFFECT_0].SpellClassMask[0] |= 0x800;
+ break;
case 51852: // The Eye of Acherus (no spawn in phase 2 in db)
spellInfo->Effects[EFFECT_0].MiscValue |= 1;
break;