diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2025-07-27 09:59:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-27 09:59:13 +0200 |
commit | 60643ce5e735dee636b01acfa4e6eb141119a41a (patch) | |
tree | 2122560bb52204c7f0767ea027f229b9a789457b /src/common | |
parent | e66f763a9ca71c93b6dea885187d2d742ad792b3 (diff) |
feat(Script/Command): Add AccountFlag pinfo output (#22548)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/Common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/Common.h b/src/common/Common.h index 98f343a45e..8a28414c01 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -61,6 +61,7 @@ enum AccountTypes SEC_CONSOLE = 4 // must be always last in list, accounts must have less security level always also }; +#define MAX_ACCOUNT_FLAG 32 enum AccountFlag { ACCOUNT_FLAG_GM = 0x1, // Account is GM @@ -96,7 +97,7 @@ enum AccountFlag // Below might be StarCraft II related ACCOUNT_FLAG_S2_REQUIRE_IGR = 0x40000000, // NYI UNK ACCOUNT_FLAG_S2_TRIAL = 0x80000000, // NYI UNK - ACCOUNT_FLAG_S2_RESTRICTED = 0xFFFFFFFF // NYI UNK + // ACCOUNT_FLAG_S2_RESTRICTED = 0xFFFFFFFF, // NYI UNK }; enum LocaleConstant |