From 058c17837ce4e3d58415e0be5b62f85507f3331d Mon Sep 17 00:00:00 2001 From: d4n3436 Date: Sat, 21 May 2022 15:15:53 -0500 Subject: [PATCH] Add bot activity (/help) --- src/Services/InteractionHandlingService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Services/InteractionHandlingService.cs b/src/Services/InteractionHandlingService.cs index 5133758..b2a6f21 100644 --- a/src/Services/InteractionHandlingService.cs +++ b/src/Services/InteractionHandlingService.cs @@ -114,6 +114,8 @@ public async Task ReadyAsync() } } } + + await _shardedClient.SetActivityAsync(new Game("/help")); } private Task InteractionCreated(SocketInteraction interaction)