diff options
author | Blaymoira <none@none> | 2009-02-25 21:44:07 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-02-25 21:44:07 +0100 |
commit | e7ca6e811711ac935a2411fb7c670b7b25bd0d85 (patch) | |
tree | 6a7784a7bb6d69c5d9df04af009b8948687012e6 /src/game/Unit.cpp | |
parent | 8770a90bc6389d123a2716079bde40f43fc26357 (diff) |
*More correct check for proc chance of spell 39446 - by Anubisss
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 3d3c4874b20..d2f857d4bf6 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5502,7 +5502,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu // 41409 Dementia: Every 5 seconds either gives you -5% damage/healing. (Druid, Shaman, Priest, Warlock, Mage, Paladin) case 39446: { - if(GetTypeId() != TYPEID_PLAYER) + if(GetTypeId() != TYPEID_PLAYER || !this->isAlive()) return false; // Select class defined buff |