From cc262e1cde544eb7cf643df79fa00c9f34af4785 Mon Sep 17 00:00:00 2001 From: click Date: Wed, 14 Apr 2010 22:21:25 +0200 Subject: Fix IsPetAura() so it's actually working properly - typos ftw. --HG-- branch : trunk --- src/game/Pet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/Pet.cpp b/src/game/Pet.cpp index 3e18f1f5480..1f15cab5142 100644 --- a/src/game/Pet.cpp +++ b/src/game/Pet.cpp @@ -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; -- cgit v1.2.3