diff options
| author | megamage <none@none> | 2009-07-01 17:31:52 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-07-01 17:31:52 -0500 |
| commit | 110262307252f188d82cb2b53ef2e5c881629268 (patch) | |
| tree | 3444c738af9821267bb8a0c8d053a5230370b59b /src | |
| parent | b71d479e2a443b914be6566b388f30ee225d6119 (diff) | |
Allow NPCs to apply taunt. Author: ApoC
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index e3f2b3df169..dc98be3bfa0 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -4177,7 +4177,7 @@ void AuraEffect::HandleModTaunt(bool apply, bool Real, bool /*changeAmount*/) Unit* caster = GetCaster(); - if(!caster || !caster->isAlive() || caster->GetTypeId() != TYPEID_PLAYER) + if(!caster || !caster->isAlive()) return; if(apply) |
