public async Task CheckPool() { var count = await _challenges.GetPendingCount(); var msg = await ReplyAsync($"There are {count} challenges pending"); if (count == 0) { await msg.AddReactionAsync(new Emoji("😰")); } }
public async Task CheckPool() { var count = await _challenges.GetPendingCount(); var msg = await ReplyAsync($"There are {count} challenges pending"); var emoji = count switch { 0 => "😰", // cold sweat //1 => "😟", // worried //2 => "🙂", // smile //3 => "😁", // grin > 4 => "😲", // astonished _ => null, }; if (emoji != null) { await msg.AddReactionAsync(new Emoji(emoji)); } }
public async Task CheckPool() { var count = await _challenges.GetPendingCount(); await ReplyAsync($"There are {count} challenges pending"); }