We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d0cef commit 1b85fe1Copy full SHA for 1b85fe1
src/utils/voteHelpers.ts
@@ -377,8 +377,11 @@ export async function handleTwoPlayerMatchVoting(
377
378
if (channel && channel.isTextBased()) {
379
const newMessage = await channel.send({
380
- embeds: [embed],
381
- components: components,
+ content: winner
+ ? `Ending match, please be patient and give it a moment to wrap up.`
382
+ : '',
383
+ embeds: winner ? [] : [embed],
384
+ components: winner ? [] : components,
385
})
386
387
setLastWinVoteMessage(channel.id, newMessage.id)
0 commit comments