8 lines
207 B
C#
8 lines
207 B
C#
public async Task ModifyStatus()
|
|
{
|
|
await (await _client.GetCurrentUserAsync()).ModifyStatusAsync(x =>
|
|
{
|
|
x.Status = UserStatus.Idle;
|
|
x.Game = new Game("Type !help for help");
|
|
});
|
|
} |