diff options
author | n0n4m3 <none@none> | 2009-12-17 07:08:21 +0100 |
---|---|---|
committer | n0n4m3 <none@none> | 2009-12-17 07:08:21 +0100 |
commit | 1db0cbc33952c50fc3115d124124b241a21afea3 (patch) | |
tree | 76d7127c78622e7ea6dc41f1789949c6cfea8be2 /src/game/Unit.cpp | |
parent | 67bc2fb4fe99ec0d43dcddea7d5d0624ef222c0d (diff) |
Fixed talent Ruthlessness
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 935bd136724..74580d45f9b 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -7769,6 +7769,9 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig case 14189: // Seal Fate (Netherblade set) case 14157: // Ruthlessness { + if (!pVictim || pVictim == this) + return false; + // Need add combopoint AFTER finish movie (or they dropped in finish phase) break; } |