Answers for "discord bot c# interrupt CollectReactionsAsync"

C#
0

discord bot c# interrupt CollectReactionsAsync

// I don't believe interrupting CollectReactionAsync is possible.
// My soloution was to instead have something like WaitForReactionAsync() to
// trigger the code below

message = await Ctx.Channel.GetMessageAsync(message.Id).ConfigureAwait(false); // Refresh message
var results = message.Reactions; // Gets messages reactions
Posted by: Guest on September-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language