stats better, timeout increased

This commit is contained in:
Master Kwoth
2016-02-14 18:43:44 +01:00
parent a100afe7d2
commit f62d9d0d79
3 changed files with 16 additions and 13 deletions

View File

@ -385,7 +385,7 @@ namespace NadekoBot.Modules {
.Description("Shows some basic stats for nadeko")
.Do(async e => {
var t = Task.Run(() => {
return NadekoStats.Instance.GetStats() + "\n`" + Music.GetMusicStats() + "`";
return NadekoStats.Instance.GetStats() + "`" + Music.GetMusicStats() + "`";
});
await e.Send(await t);