aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNevan <none@none>2009-08-17 03:28:52 +0200
committerNevan <none@none>2009-08-17 03:28:52 +0200
commit19ebe75d4102bb27a39edf196b1245635839c239 (patch)
treea013760684149d4d4d26972ba7d0fecbb3c7d381 /src
parent05f2f1911a1e4647c91c357aa42489997fd5154c (diff)
*Fix Frozen Power Talent
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Unit.cpp10
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)
{