diff options
| author | Shauren <shauren.trinity@gmail.com> | 2025-04-25 22:50:11 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2025-04-25 22:50:11 +0200 |
| commit | f9bf082be962d45de79f936d625f644253e9b810 (patch) | |
| tree | a7c40c0b5baf522d04896721df5c5d91e25c834e /src/server/game/Support | |
| parent | 05709a24976cc4cd378ee62bdfec52510892aa5b (diff) | |
Core: Updated to 11.1.5
Diffstat (limited to 'src/server/game/Support')
| -rw-r--r-- | src/server/game/Support/SupportMgr.h | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/server/game/Support/SupportMgr.h b/src/server/game/Support/SupportMgr.h index f8582ebb6d0..b21637a7991 100644 --- a/src/server/game/Support/SupportMgr.h +++ b/src/server/game/Support/SupportMgr.h @@ -53,21 +53,23 @@ enum class ReportMajorCategory : int32 enum class ReportMinorCategory : int32 { - TextChat = 0x0001, - Boosting = 0x0002, - Spam = 0x0004, - Afk = 0x0008, - IntentionallyFeeding = 0x0010, - BlockingProgress = 0x0020, - Hacking = 0x0040, - Botting = 0x0080, - Advertisement = 0x0100, - BTag = 0x0200, - GroupName = 0x0400, - CharacterName = 0x0800, - GuildName = 0x1000, - Description = 0x2000, - Name = 0x4000, + TextChat = 0x00000001, + Boosting = 0x00000002, + Spam = 0x00000004, + Afk = 0x00000008, + IntentionallyFeeding = 0x00000010, + BlockingProgress = 0x00000020, + Hacking = 0x00000040, + Botting = 0x00000080, + Advertisement = 0x00000100, + BTag = 0x00000200, + GroupName = 0x00000400, + CharacterName = 0x00000800, + GuildName = 0x00001000, + Description = 0x00002000, + Name = 0x00004000, + ChinaHarmfulMinors = 0x00008000, + Disruption = 0x00010000, }; // from blizzard lua |
