fixed build

This commit is contained in:
Ovahlord
2021-04-09 14:41:48 +02:00
parent c77c435363
commit af44c72993

View File

@@ -5760,7 +5760,7 @@ void AuraEffect::HandlePeriodicDamageAurasTick(Unit* target, Unit* caster) const
caster->DealDamageMods(target, damage, &absorb);
// Set trigger flag
uint32 procAttacker, procVictim = PROC_FLAG_NONE;
uint32 procAttacker = PROC_FLAG_NONE, procVictim = PROC_FLAG_NONE;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_CASTER_PROCS))
procAttacker = PROC_FLAG_DONE_PERIODIC;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_TARGET_PROCS))
@@ -5855,7 +5855,7 @@ void AuraEffect::HandlePeriodicHealthLeechAuraTick(Unit* target, Unit* caster) c
damage = damageInfo.GetDamage();
// Set trigger flag
uint32 procAttacker, procVictim = PROC_FLAG_NONE;
uint32 procAttacker = PROC_FLAG_NONE, procVictim = PROC_FLAG_NONE;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_CASTER_PROCS))
procAttacker = PROC_FLAG_DONE_PERIODIC;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_TARGET_PROCS))
@@ -6031,7 +6031,7 @@ void AuraEffect::HandlePeriodicHealAurasTick(Unit* target, Unit* caster) const
if (GetAuraType() == SPELL_AURA_OBS_MOD_HEALTH)
return;
uint32 procAttacker, procVictim = PROC_FLAG_NONE;
uint32 procAttacker = PROC_FLAG_NONE, procVictim = PROC_FLAG_NONE;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_CASTER_PROCS))
procAttacker = PROC_FLAG_DONE_PERIODIC;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_TARGET_PROCS))
@@ -6207,7 +6207,7 @@ void AuraEffect::HandlePeriodicPowerBurnAuraTick(Unit* target, Unit* caster) con
caster->SendSpellNonMeleeDamageLog(&damageInfo);
// Set trigger flag
uint32 procAttacker, procVictim = PROC_FLAG_NONE;
uint32 procAttacker = PROC_FLAG_NONE, procVictim = PROC_FLAG_NONE;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_CASTER_PROCS))
procAttacker = PROC_FLAG_DONE_PERIODIC;
if (!m_spellInfo->HasAttribute(SPELL_ATTR3_CANT_TRIGGER_TARGET_PROCS))