diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index c098c6293..e8b45296f 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2832,6 +2832,13 @@ void Spell::cast(bool skipCheck) AddTriggeredSpell(30708); // Totem of Wrath break; } + case SPELLFAMILY_DEATHKNIGHT: + { + // Chains of Ice + if (m_spellInfo->Id == 45524) + AddTriggeredSpell(55095); // Frost Fever + break; + } default: break; } diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 7a0c0d21f..a82653051 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6482,14 +6482,6 @@ void Aura::HandleSpellSpecificBoosts(bool apply) // second part of spell apply switch (GetId()) { - case 45524: // Chains of Ice - { - if (apply) - spellId1 = 55095; // Frost Fever - else - return; - break; - } case 49039: spellId1 = 50397; break; // Lichborne case 48263: // Frost Presence diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 0009a2f59..a193a04c5 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 "9964" + #define REVISION_NR "9965" #endif // __REVISION_NR_H__