From e3d31c5bd1e2fddc8413c59a8d4e21b1fa5bd30b Mon Sep 17 00:00:00 2001 From: RyadaProductions Date: Wed, 15 Feb 2017 13:26:25 +0100 Subject: [PATCH] Update status.cs SetStatus and SetGame don't exist, only SetStatusAsync and SetGameAsync --- docs/guides/samples/faq/status.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/samples/faq/status.cs b/docs/guides/samples/faq/status.cs index 8025dd7fd..18906c53b 100644 --- a/docs/guides/samples/faq/status.cs +++ b/docs/guides/samples/faq/status.cs @@ -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"); }