Files
Discord.Net/docs/guides/samples/faq/status.cs
RyadaProductions e3d31c5bd1 Update status.cs
SetStatus and SetGame don't exist, only SetStatusAsync and SetGameAsync
2017-02-15 13:26:25 +01:00

6 lines
143 B
C#

public async Task ModifyStatus()
{
await _client.SetStatusAsync(UserStatus.Idle);
await _client.SetGameAsync("Type !help for help");
}