diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-05-11 00:43:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-11 00:43:57 +0300 |
commit | 37543ec0fdeb223ffb46a33207c107081d796b63 (patch) | |
tree | d1096d065b8855cf5d8cd99c8bbe330eb2d178a3 /util/src | |
parent | add more message flags (diff) | |
download | server-37543ec0fdeb223ffb46a33207c107081d796b63.tar.xz |
Update MessageFlags.ts
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/util/MessageFlags.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/src/util/MessageFlags.ts b/util/src/util/MessageFlags.ts index d8e7bc4f..b8f8c857 100644 --- a/util/src/util/MessageFlags.ts +++ b/util/src/util/MessageFlags.ts @@ -14,6 +14,7 @@ export class MessageFlags extends BitField { PRIVATE_ROUTE: BigInt(1) << BigInt(6), // it that has been routed to only some of the users that can see the channel INTERACTION_WAIT: BigInt(1) << BigInt(7), // discord.com calls this LOADING // FAILED_TO_MENTION_SOME_ROLES_IN_THREAD: BigInt(1) << BigInt(8) - SCRIPT_WAIT: BigInt(1) << BigInt(24) // waiting for the self command to complete + SCRIPT_WAIT: BigInt(1) << BigInt(24), // waiting for the self command to complete + IMPORT_WAIT: BigInt(1) << BigInt(25), // last message of a channel bulk guild import, waiting for the rest of the channel to be backfilled }; } |