diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 80ee7bd359b..b0c20983efd 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6465,6 +6465,16 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger break; } } + // Frozen Power + if (dummySpell->SpellIconID == 3780) + { + float chance = triggerAmount; + if (!roll_chance_f(chance)) + return false; + + triggered_spell_id = 63685; + break; + } // Storm, Earth and Fire if (dummySpell->SpellIconID == 3063) { |