Procházet zdrojové kódy

Add GUILDS and GUILD_MESSAGES intents for bots

rigormorrtiss před 4 roky
rodič
revize
aeaf245fb5
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  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)
 		}
 	}