Skip to content

Commit

Permalink
Add MESSAGE_CONTENT intent (#327)
Browse files Browse the repository at this point in the history
* Add MESSAGE_CONTENT intent

Closes #326

* Stick with code style
  • Loading branch information
Blocksnmore authored Sep 4, 2022
1 parent 594c2fa commit 5c08200
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types/gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ export enum GatewayIntents {
GUILD_MESSAGE_TYPING = 1 << 11,
DIRECT_MESSAGES = 1 << 12,
DIRECT_MESSAGE_REACTIONS = 1 << 13,
DIRECT_MESSAGE_TYPING = 1 << 13
DIRECT_MESSAGE_TYPING = 1 << 13,
MESSAGE_CONTENT = 1 << 15
}

export enum GatewayEvents {
Expand Down

0 comments on commit 5c08200

Please sign in to comment.