*Fix several typos.

--HG--
branch : trunk
This commit is contained in:
maximius
2009-10-17 03:52:49 -07:00
parent b6a9312727
commit a641b82f03
4 changed files with 6 additions and 5 deletions

View File

@@ -4138,7 +4138,7 @@ void Unit::RemoveAllAuras(uint64 casterGUID, Aura * except /*=NULL*/, bool negat
AuraMap::iterator iter = m_Auras.begin();
while (!m_Auras.empty())
{
Aura * aur = (*iter)->GetParentAura();
Aura * aur = (*iter).second;
if (aur != except && (!casterGUID || aur->GetCasterGUID()==casterGUID)
&& ((negative && !aur->IsPositive()) || (positive && aur->IsPositive())))
RemoveAura(aur);