Core/Criteria: Add all values of CriteriaTreeFlags
Port From (https://github.com/TrinityCore/TrinityCore/commit/5543908e52bec8d62aca33b4f04171dc19dfe275)
This commit is contained in:
@@ -28,12 +28,19 @@ namespace Framework.Constants
|
|||||||
|
|
||||||
public enum CriteriaTreeFlags
|
public enum CriteriaTreeFlags
|
||||||
{
|
{
|
||||||
ProgressBar = 0x0001,
|
ProgressBar = 0x0001, // Progress Bar
|
||||||
ProgressIsDate = 0x0004,
|
DoNotDisplay = 0x0002, // Do Not Display
|
||||||
ShowCurrencyIcon = 0x0008,
|
IsDate = 0x0004, // Is a Date
|
||||||
AllianceOnly = 0x0200,
|
IsMoney = 0x0008, // Is Money
|
||||||
HordeOnly = 0x0400,
|
ToastOnComplete = 0x0010, // Toast on Complete
|
||||||
ShowRequiredCount = 0x0800
|
UseObjectsDescription = 0x0020, // Use Object's Description
|
||||||
|
ShowFactionSpecificChild = 0x0040, // Show faction specific child
|
||||||
|
DisplayAllChildren = 0x0080, // Display all children
|
||||||
|
AwardBonusRep = 0x0100, // Award Bonus Rep (Hack!!)
|
||||||
|
AllianceOnly = 0x0200, // Treat this criteria or block as Alliance
|
||||||
|
HordeOnly = 0x0400, // Treat this criteria or block as Horde
|
||||||
|
DisplayAsFraction = 0x0800, // Display as Fraction
|
||||||
|
IsForQuest = 0x1000 // Is For Quest
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum CriteriaTreeOperator
|
public enum CriteriaTreeOperator
|
||||||
|
|||||||
Reference in New Issue
Block a user