Core/Spell: reimplemented TRIGGERED_DISALLOW_PROC_EVENTS trigger flag

This commit is contained in:
hondacrx
2017-12-11 11:20:38 -05:00
parent 0602114c92
commit e26e0783ab
4 changed files with 30 additions and 3 deletions
+1
View File
@@ -7125,6 +7125,7 @@ namespace Game.Spells
public bool IsTriggered() { return _triggeredCastFlags.HasAnyFlag(TriggerCastFlags.FullMask); }
public bool IsIgnoringCooldowns() { return _triggeredCastFlags.HasAnyFlag(TriggerCastFlags.IgnoreSpellAndCategoryCD); }
public bool IsProcDisabled() { return _triggeredCastFlags.HasAnyFlag(TriggerCastFlags.DisallowProcEvents); }
public bool IsChannelActive() { return m_caster.GetChannelSpellId() != 0; }
public bool IsDeletable()