Merge pull request #7904 from Sovak/compile_2

Core/Build: Fix compile
This commit is contained in:
Nay
2012-09-29 04:47:24 -07:00

View File

@@ -1008,7 +1008,7 @@ void Guardian::UpdateArmor()
// hunter pets gain 35% of owner's armor value, warlock pets gain 100% of owner's armor
if (isHunterPet())
bonus_armor = float(CalculatePctN(m_owner->GetArmor(), 70);
bonus_armor = float(CalculatePctN(m_owner->GetArmor(), 70));
else if (isPet())
bonus_armor = m_owner->GetArmor();