diff options
| author | Machiavelli <none@none> | 2010-12-19 17:50:50 +0100 |
|---|---|---|
| committer | Machiavelli <none@none> | 2010-12-19 17:50:50 +0100 |
| commit | 5e826806ba35844dc7e3d4b386be797408576872 (patch) | |
| tree | 978ad8e05f5f974fe9676b0132174b3d9bd9ea08 | |
| parent | cbbcfa03f35d6fb9250b2ed317c8d26c2dd5eede (diff) | |
Core/Aura´s: Remove a redundant NULL check, because QAston saideth so.
--HG--
branch : trunk
| -rwxr-xr-x | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 4f8ddd423fa..65be8aafffd 100755 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -3963,7 +3963,7 @@ void AuraEffect::HandleModThreat(AuraApplication const * aurApp, uint8 mode, boo return; Unit * target = aurApp->GetTarget(); - if (!target || (apply && !target->isAlive())) + if (apply && !target->isAlive()) return; Unit * caster = GetCaster(); |
