From 2de5f27819fb5126a5b6863140141eba980f8c8d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 14 May 2024 00:38:17 -0400 Subject: [PATCH] Fix --- commands/games-sp/hearing-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/hearing-test.js b/commands/games-sp/hearing-test.js index d38fa94a..7afbaeee 100644 --- a/commands/games-sp/hearing-test.js +++ b/commands/games-sp/hearing-test.js @@ -51,7 +51,7 @@ module.exports = class HearingTestCommand extends Command { new ButtonBuilder().setCustomId('true').setLabel('Yes').setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId('false').setLabel('No').setStyle(ButtonStyle.Danger) ); - await gameMsg.edit('Did you hear that sound?', { components: [rows] }); + await gameMsg.edit({ content: 'Did you hear that sound?', components: [rows] }); try { buttonPress = await gameMsg.awaitMessageComponent({ filter: res => res.user.id === msg.author.id,