Browse Source

Add GUILDS and GUILD_MESSAGES intents for bots

rigormorrtiss 4 years ago
parent
commit
aeaf245fb5
1 changed files with 3 additions and 0 deletions
  1. 3 0
      discordo.go

+ 3 - 0
discordo.go

@@ -90,6 +90,9 @@ func newSession(email string, password string, token string) *session.Session {
 
 		if !strings.HasPrefix(token, "Bot ") {
 			sess.AddHandler(onReady)
+		} else {
+			sess.Gateway.AddIntents(gateway.IntentGuilds)
+			sess.Gateway.AddIntents(gateway.IntentGuildMessages)
 		}
 	}