Update status.cs

SetStatus and SetGame don't exist, only SetStatusAsync and SetGameAsync
This commit is contained in:
RyadaProductions
2017-02-15 13:26:25 +01:00
committed by GitHub
parent 941e8383b1
commit e3d31c5bd1

View File

@@ -1,5 +1,5 @@
public async Task ModifyStatus()
{
await _client.SetStatus(UserStatus.Idle);
await _client.SetGame("Type !help for help");
await _client.SetStatusAsync(UserStatus.Idle);
await _client.SetGameAsync("Type !help for help");
}