From c3f2a9883b02c087e5ec09e9fcdc58229a0045db Mon Sep 17 00:00:00 2001 From: kate Date: Wed, 10 Jun 2026 23:06:11 -0400 Subject: [PATCH] Remove "for" from setActivity since the activity no longer displays the type (watching) in the member list --- src/main/java/com/diamondfire/helpbot/bot/HelpBotInstance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/diamondfire/helpbot/bot/HelpBotInstance.java b/src/main/java/com/diamondfire/helpbot/bot/HelpBotInstance.java index 7c297f70..7115edb7 100644 --- a/src/main/java/com/diamondfire/helpbot/bot/HelpBotInstance.java +++ b/src/main/java/com/diamondfire/helpbot/bot/HelpBotInstance.java @@ -138,7 +138,7 @@ public static void initialize() throws LoginException { .enableIntents(GatewayIntent.GUILD_MEMBERS, GatewayIntent.MESSAGE_CONTENT, GatewayIntent.DIRECT_MESSAGES, GatewayIntent.DIRECT_MESSAGE_REACTIONS) .setStatus(OnlineStatus.ONLINE) .setMemberCachePolicy(MemberCachePolicy.NONE) - .setActivity(Activity.watching("for " + getConfig().getPrefix() + "help")) + .setActivity(Activity.watching(getConfig().getPrefix() + "help")) .setGatewayEncoding(GatewayEncoding.ETF) .disableCache(CacheFlag.ACTIVITY, CacheFlag.VOICE_STATE, CacheFlag.CLIENT_STATUS) .addEventListeners(new MessageEvent(), new ReadyEvent(), new GuildJoinEvent(), new ButtonEvent(), new MessageEditEvent(), new PostChannelEvent(), new ChannelCreatedEvent(), new ChannelUpdatedNameEvent());