diff --git a/samples/InteractionFramework/Program.cs b/samples/InteractionFramework/Program.cs index b9c4697af..82b5a2851 100644 --- a/samples/InteractionFramework/Program.cs +++ b/samples/InteractionFramework/Program.cs @@ -43,6 +43,15 @@ namespace InteractionFramework public async Task RunAsync() { + // Output of bot activity. + while(true) + { + await _client.SetGameAsync("I love Discord"); + Thread.sleep(5000); + await _client.SetGameAsync("I love Discord.NET"); + Thread.sleep(5000); + } + var client = _services.GetRequiredService(); client.Log += LogAsync;