Fix IsPetAura() so it's actually working properly - typos ftw.

--HG--
branch : trunk
This commit is contained in:
click
2010-04-14 22:21:25 +02:00
parent c81451ebe5
commit cc262e1cde

View File

@@ -1950,7 +1950,7 @@ bool Pet::IsPetAura(Aura const* aura)
PetAura const* pa = spellmgr.GetPetAura(aura->GetId(),i);
// if the owner has that pet aura, return true
if (owner->m_petAuras.find(pa) != m_petAuras.end())
if (owner->m_petAuras.find(pa) != owner->m_petAuras.end())
return true;
}
return false;