diff options
| -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 a8e15ebf691..e07b2aef98a 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -1304,7 +1304,7 @@ void Unit::DealSpellDamage(SpellNonMeleeDamage *damageInfo, bool durabilityLoss) for(AuraMap::iterator itr = vAuras.begin(); itr != vAuras.end(); ++itr) { SpellEntry const *spellInfo = (*itr).second->GetSpellProto(); - if( spellInfo->AttributesEx3 & 0x40000 && spellInfo->SpellFamilyName == SPELLFAMILY_PALADIN && ((*itr).second->GetCasterGUID() == GetGUID())) + if(spellInfo->SpellFamilyName == SPELLFAMILY_PALADIN && spellInfo->AttributesEx3 & 0x40000) { (*itr).second->SetAuraDuration((*itr).second->GetAuraMaxDuration()); (*itr).second->UpdateAuraDuration(); |
