Core/Spellaura: Fix Idol of Worship

This commit is contained in:
Faq
2012-07-13 18:52:37 +03:00
parent d5f7e1671f
commit b57a87cafa

View File

@@ -627,7 +627,10 @@ int32 AuraEffect::CalculateAmount(Unit* caster)
uint8 cp = caster->ToPlayer()->GetComboPoints();
// Idol of Feral Shadows. Cant be handled as SpellMod in SpellAura:Dummy due its dependency from CPs
if (AuraEffect const* aurEff = caster->GetAuraEffect(34241, 0))
if (AuraEffect const* aurEff = caster->GetAuraEffect(34241, EFFECT_0))
amount += cp * aurEff->GetAmount();
// Idol of Worship. Cant be handled as SpellMod in SpellAura:Dummy due its dependency from CPs
else if (AuraEffect const* aurEff = caster->GetAuraEffect(60774, EFFECT_0))
amount += cp * aurEff->GetAmount();
amount += uint32(CalculatePctU(caster->GetTotalAttackPowerValue(BASE_ATTACK), cp));