mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-04-03 12:51:37 +00:00
ask for term to explain _after_ the list, so it won't be lost
This commit is contained in:
parent
9959dd0676
commit
a471c21330
@ -34,7 +34,6 @@ namespace CompatBot.Commands
|
|||||||
var sourceTerm = term;
|
var sourceTerm = term;
|
||||||
if (string.IsNullOrEmpty(term))
|
if (string.IsNullOrEmpty(term))
|
||||||
{
|
{
|
||||||
var botMsg = await ctx.RespondAsync("Please tell what term to explain:").ConfigureAwait(false);
|
|
||||||
var lastBotMessages = await ctx.Channel.GetMessagesBeforeAsync(ctx.Message.Id, 10).ConfigureAwait(false);
|
var lastBotMessages = await ctx.Channel.GetMessagesBeforeAsync(ctx.Message.Id, 10).ConfigureAwait(false);
|
||||||
var showList = true;
|
var showList = true;
|
||||||
foreach (var pastMsg in lastBotMessages)
|
foreach (var pastMsg in lastBotMessages)
|
||||||
@ -47,6 +46,7 @@ namespace CompatBot.Commands
|
|||||||
}
|
}
|
||||||
if (showList)
|
if (showList)
|
||||||
await List(ctx).ConfigureAwait(false);
|
await List(ctx).ConfigureAwait(false);
|
||||||
|
var botMsg = await ctx.RespondAsync("Please tell what term to explain:").ConfigureAwait(false);
|
||||||
var interact = ctx.Client.GetInteractivity();
|
var interact = ctx.Client.GetInteractivity();
|
||||||
var newMessage = await interact.WaitForMessageAsync(m => m.Author == ctx.User && m.Channel == ctx.Channel && !string.IsNullOrEmpty(m.Content)).ConfigureAwait(false);
|
var newMessage = await interact.WaitForMessageAsync(m => m.Author == ctx.User && m.Channel == ctx.Channel && !string.IsNullOrEmpty(m.Content)).ConfigureAwait(false);
|
||||||
await botMsg.DeleteAsync().ConfigureAwait(false);
|
await botMsg.DeleteAsync().ConfigureAwait(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user