From e75e514bf413aa0cc97d53cd70dae855ef85abd8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 14 May 2024 00:43:05 -0400 Subject: [PATCH] Make wait longer --- 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 c799bc00..3f28165f 100644 --- a/commands/games-sp/hearing-test.js +++ b/commands/games-sp/hearing-test.js @@ -45,7 +45,7 @@ module.exports = class HearingTestCommand extends Command { let buttonPress; for (const { age: dataAge, khz, file } of data) { connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'hearing-test', file)); - await delay(3500); + await delay(4500); const rows = new ActionRowBuilder().addComponents( new ButtonBuilder().setCustomId('true').setLabel('Yes').setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId('false').setLabel('No').setStyle(ButtonStyle.Danger)