We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4e9a83 commit e383ec6Copy full SHA for e383ec6
CHANGELOG.md
@@ -14,6 +14,7 @@
14
### Removed
15
16
### Fixed
17
+- 不要なインテントを要求していた問題を修正
18
19
### Security
20
core/src/main/java/dev/felnull/itts/core/discord/Bot.java
@@ -43,8 +43,7 @@ public void start() {
43
registeringCommands();
44
45
this.jda = JDABuilder.createDefault(getConfigManager().getConfig().getBotToken())
46
- .enableIntents(GatewayIntent.MESSAGE_CONTENT, GatewayIntent.GUILD_PRESENCES)
47
- .enableCache(CacheFlag.ACTIVITY)
+ .enableIntents(GatewayIntent.MESSAGE_CONTENT)
48
.addEventListeners(new DCEventListener(this), this.connectControl.getAdaptor())
49
.build();
50
0 commit comments