Core/Spell: do not proc auras on SPELL_AURA_OBS_MOD_HEALTH healing ticks

This commit is contained in:
hondacrx
2018-03-18 12:10:41 -04:00
parent 6ec1bce358
commit 33da910226
+4
View File
@@ -5589,6 +5589,10 @@ namespace Game.Spells
target.getHostileRefManager().threatAssist(caster, healInfo.GetEffectiveHeal() * 0.5f, GetSpellInfo());
// %-based heal - does not proc auras
if (GetAuraType() == AuraType.ObsModHealth)
return;
ProcFlags procAttacker = ProcFlags.DonePeriodic;
ProcFlags procVictim = ProcFlags.TakenPeriodic;
ProcFlagsHit hitMask = crit ? ProcFlagsHit.Critical : ProcFlagsHit.Normal;