Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp
- index e3b8d31..fafa9e4 100644
- --- a/src/server/game/Spells/Spell.cpp
- +++ b/src/server/game/Spells/Spell.cpp
- @@ -3886,32 +3886,6 @@ void Spell::finish(bool ok)
- switch (m_spellInfo->Id)
- {
- - case 49143: // Frost Strike
- - case 47541: // Death Coil
- - case 56815: // Rune Strike
- - if(m_caster->HasAura(81229)) // Runic Empowerment
- - {
- - if(roll_chance_i(45))
- - {
- - uint32 cooldownrunes[MAX_RUNES];
- - uint8 runescount = 0;
- - for (uint32 j = 0; j < MAX_RUNES; ++j)
- - {
- - if (m_caster->ToPlayer()->GetRuneCooldown(j))
- - {
- - cooldownrunes[runescount] = j;
- - runescount++;
- - }
- - }
- - if (runescount > 0)
- - {
- - uint8 rndrune = urand(0,runescount-1);
- - m_caster->ToPlayer()->SetRuneCooldown(cooldownrunes[rndrune], 0);
- - }
- - }
- - }
- - break;
- case 30455: // Ice Lance
- case 44572: // Deep Freeze
- if (m_caster->HasAura(44544)) // Fingers of Frost
Advertisement
Add Comment
Please, Sign In to add comment