diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index bf2acff24..a4e8b1d0e 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -8857,6 +8857,28 @@ void SpellAuraHolder::HandleSpellSpecificBoosts(bool apply) { switch(GetId()) { + case 29865: // Deathbloom (10 man) + { + if (!apply && m_removeMode == AURA_REMOVE_BY_EXPIRE) + { + cast_at_remove = true; + spellId1 = 55594; + } + else + return; + break; + } + case 55053: // Deathbloom (25 man) + { + if (!apply && m_removeMode == AURA_REMOVE_BY_EXPIRE) + { + cast_at_remove = true; + spellId1 = 55601; + } + else + return; + break; + } case 50720: // Vigilance (warrior spell but not have warrior family) { spellId1 = 68066; // Damage Reduction diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3dd7183ba..6ce7178aa 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 "11637" + #define REVISION_NR "11638" #endif // __REVISION_NR_H__