diff --git a/src/main/java/com/cssbham/minecraftcore/discord/DiscordBridge.java b/src/main/java/com/cssbham/minecraftcore/discord/DiscordBridge.java index b33b443..74f3ba6 100644 --- a/src/main/java/com/cssbham/minecraftcore/discord/DiscordBridge.java +++ b/src/main/java/com/cssbham/minecraftcore/discord/DiscordBridge.java @@ -50,7 +50,7 @@ public DiscordBridge(MinecraftCore core) throws LoginException, ClassCastExcepti BOT_TOKEN ).setMemberCachePolicy(MemberCachePolicy.ALL) .setChunkingFilter(ChunkingFilter.ALL) - .enableIntents(GatewayIntent.GUILD_MEMBERS, GatewayIntent.GUILD_MEMBERS).addEventListeners(this).build(); + .enableIntents(GatewayIntent.GUILD_MEMBERS, GatewayIntent.MESSAGE_CONTENT).addEventListeners(this).build(); this.webhook = new WebhookClientBuilder(WEBHOOK_URL) .setThreadFactory(Thread::new) .setDaemon(true)