Typo in some function usage
--HG-- branch : trunk
This commit is contained in:
@@ -5941,7 +5941,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
|
||||
}
|
||||
|
||||
triggered_spell_id = 12654;
|
||||
basepoints0 += GetRemainingDotDamage(GetGUID(), triggered_spell_id);
|
||||
basepoints0 += pVictim->GetRemainingDotDamage(GetGUID(), triggered_spell_id);
|
||||
break;
|
||||
}
|
||||
// Glyph of Ice Block
|
||||
@@ -6778,7 +6778,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
|
||||
basepoints0 = triggerAmount*damage/400;
|
||||
triggered_spell_id = 61840;
|
||||
// Add remaining ticks to damage done
|
||||
basepoints0 += GetRemainingDotDamage(GetGUID(), triggered_spell_id);
|
||||
basepoints0 += pVictim->GetRemainingDotDamage(GetGUID(), triggered_spell_id);
|
||||
break;
|
||||
}
|
||||
// Sheath of Light
|
||||
@@ -8172,7 +8172,7 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig
|
||||
return false;
|
||||
|
||||
basepoints0 = int32(damage * triggerAmount / 100 / (GetSpellMaxDuration(TriggerPS) / TriggerPS->EffectAmplitude[0]));
|
||||
basepoints0 += GetRemainingDotDamage(GetGUID(), trigger_spell_id);
|
||||
basepoints0 += pVictim->GetRemainingDotDamage(GetGUID(), trigger_spell_id);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user