Core/Auras: Named new proc flags

Port From (https://github.com/TrinityCore/TrinityCore/commit/c2dd07aa32f5071b7f48819b44344060eae1be06)
This commit is contained in:
hondacrx
2022-02-28 13:17:54 -05:00
parent 64b23b9de9
commit 1b37eb0525
@@ -2430,7 +2430,7 @@ namespace Framework.Constants
}
[Flags]
public enum ProcFlags
public enum ProcFlags : uint
{
None = 0x0,
@@ -2476,6 +2476,11 @@ namespace Framework.Constants
EnterCombat = 0x08000000, // 27 Entered combat
EncounterStart = 0x10000000, // 28 Encounter started
CastEnded = 0x20000000, // 29 Cast Ended
Looted = 0x40000000, // 30 Looted (took from loot, not opened loot window)
TakeHelpfulPeriodic = 0x80000000, // 31 Take Helpful Periodic
// flag masks
AutoAttackMask = DoneMeleeAutoAttack | TakenMeleeAutoAttack | DoneRangedAutoAttack | TakenRangedAutoAttack,