This commit is contained in:
UltraNix
2021-12-07 15:57:39 +01:00
parent 2cab3258bb
commit 6006eeeb01
3 changed files with 5 additions and 5 deletions

View File

@@ -222,7 +222,7 @@ enum ScoreType
SCORE_DESTROYED_WALL = 19, SCORE_DESTROYED_WALL = 19,
}; };
enum ArenaType enum ArenaType : uint8
{ {
ARENA_TYPE_2v2 = 2, ARENA_TYPE_2v2 = 2,
ARENA_TYPE_3v3 = 3, ARENA_TYPE_3v3 = 3,

View File

@@ -31,7 +31,7 @@
// also see MAX_LEVEL and GT_MAX_LEVEL define // also see MAX_LEVEL and GT_MAX_LEVEL define
#define STRONG_MAX_LEVEL 255 #define STRONG_MAX_LEVEL 255
enum BattlegroundBracketId // bracketId for level ranges enum BattlegroundBracketId : uint8 // bracketId for level ranges
{ {
BG_BRACKET_ID_FIRST = 0, BG_BRACKET_ID_FIRST = 0,
BG_BRACKET_ID_LAST = 15 BG_BRACKET_ID_LAST = 15

View File

@@ -1339,7 +1339,7 @@ enum Mechanics : uint32
(1<<MECHANIC_SAPPED)) (1<<MECHANIC_SAPPED))
// Spell dispel type // Spell dispel type
enum DispelType enum DispelType : uint8
{ {
DISPEL_NONE = 0, DISPEL_NONE = 0,
DISPEL_MAGIC = 1, DISPEL_MAGIC = 1,
@@ -1601,7 +1601,7 @@ enum GameObjectDestructibleState
}; };
// EmotesText.dbc // EmotesText.dbc
enum TextEmotes enum TextEmotes : uint32
{ {
TEXT_EMOTE_AGREE = 1, TEXT_EMOTE_AGREE = 1,
TEXT_EMOTE_AMAZE = 2, TEXT_EMOTE_AMAZE = 2,
@@ -3541,7 +3541,7 @@ enum DuelCompleteType
}; };
// handle the queue types and bg types separately to enable joining queue for different sized arenas at the same time // handle the queue types and bg types separately to enable joining queue for different sized arenas at the same time
enum BattlegroundQueueTypeId enum BattlegroundQueueTypeId : uint32
{ {
BATTLEGROUND_QUEUE_NONE = 0, BATTLEGROUND_QUEUE_NONE = 0,
BATTLEGROUND_QUEUE_AV = 1, BATTLEGROUND_QUEUE_AV = 1,