ソースを参照

Add GUILDS and GUILD_MESSAGES intents for bots

rigormorrtiss 4 年 前
コミット
aeaf245fb5
1 ファイル変更3 行追加0 行削除
  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)
 		}
 	}